package topojsone

  1. Overview
  2. Docs
type location = (int * int) * (int * int)

A location from Jsone. A pair of line and column numbers respectively one and zero based.

type t = [
  1. | `Error of location * Jsone.error
  2. | `EOI
  3. | `Unexpected of string
]
val pp : Stdlib.Format.formatter -> t -> unit

Pretty printer for errors.