sig
type t = private {
file : string option;
line : int option;
col : int option;
}
exception Bad of string
exception Undefined
val make : ?file:string -> ?line:int -> ?col:int -> unit -> Biocaml_pos.t
val f : string -> Biocaml_pos.t
val l : int -> Biocaml_pos.t
val fl : string -> int -> Biocaml_pos.t
val lc : int -> int -> Biocaml_pos.t
val flc : string -> int -> int -> Biocaml_pos.t
val unknown : Biocaml_pos.t
val file_exn : Biocaml_pos.t -> string
val line_exn : Biocaml_pos.t -> int
val col_exn : Biocaml_pos.t -> int
val set_file : Biocaml_pos.t -> string -> Biocaml_pos.t
val set_line : Biocaml_pos.t -> int -> Biocaml_pos.t
val set_col : Biocaml_pos.t -> int -> Biocaml_pos.t
val incrl : Biocaml_pos.t -> int -> Biocaml_pos.t
val to_string : Biocaml_pos.t -> string
val t_of_sexp : Sexplib.Sexp.t -> Biocaml_pos.t
val sexp_of_t : Biocaml_pos.t -> Sexplib.Sexp.t
end