Overview
simple_yaml provides YAML parsing and writing for Eiffel.
Part of the Simple Eiffel ecosystem. Backend for simple_codec.
API Preview
-- Parse YAML file
yaml: SIMPLE_YAML
data: YAML_MAPPING
create yaml
data := yaml.parse_file ("config.yaml")
-- Access values
name := data.string_item ("name")
items := data.array_item ("items")