Textuallib.LineMap
module F = Stdlib.Format
type loc = {
line : int;
column : int;
}
type t
val create : string -> t
val find : t -> int -> loc option
val pp : F.formatter -> t -> unit