package yaml

  1. Overview
  2. Docs
Parse and generate YAML 1.1/1.2 files

Install

dune-project
 Dependency

Authors

Maintainers

Sources

yaml-3.1.0.tbz
sha256=d0a9e0ae2184a69e6d7202bfe3707d10439d31a71241860234b19f020452ecc7
sha512=69d0ff09abeac475981deefc5a2a09e8707aebe4c7e606671a5a8ffa7055d3519ee9e4823065d89c8c5eedb355015b8d9410286fac721af53d910d924a0711a3

doc/yaml_bindings_types/Yaml_bindings_types/Token_type/index.html

Module Yaml_bindings_types.Token_typeSource

Sourcetype t = [
  1. | `None
  2. | `Stream_start
  3. | `Stream_end
  4. | `Version_directive
  5. | `Tag_directive
  6. | `Document_start
  7. | `Document_end
  8. | `Block_sequence_start
  9. | `Block_mapping_start
  10. | `Block_end
  11. | `Flow_sequence_start
  12. | `Flow_sequence_end
  13. | `Flow_mapping_start
  14. | `Flow_mapping_end
  15. | `Block_entry
  16. | `Flow_entry
  17. | `Key
  18. | `Value
  19. | `Alias
  20. | `Anchor
  21. | `Tag
  22. | `Scalar
  23. | `E of int64
]