package yaml

  1. Overview
  2. Docs
type t = [
  1. | `None
  2. | `Stream_start
  3. | `Stream_end
  4. | `Document_start
  5. | `Document_end
  6. | `Alias
  7. | `Scalar
  8. | `Sequence_start
  9. | `Sequence_end
  10. | `Mapping_start
  11. | `Mapping_end
  12. | `E of int64
]
val sexp_of_t : t -> Sexplib0.Sexp.t
val t_of_sexp : Sexplib0.Sexp.t -> t
val __t_of_sexp__ : Sexplib0.Sexp.t -> t