package yaml

  1. Overview
  2. Docs

Position information for an event

type t = {
  1. index : int;
    (*

    position in characters

    *)
  2. line : int;
    (*

    line number

    *)
  3. column : int;
    (*

    column number

    *)
}
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t