Module Textuallib.LineMap

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