Yaml_unixUNIX interface functions for handling Yaml
val of_file : Fpath.t -> (Yaml.value, [ `Msg of string ]) resultof_file p will read the whole of the file at path p and convert it in a Yaml.value.
val of_file_exn : Fpath.t -> Yaml.valueval to_file : Fpath.t -> Yaml.value -> (unit, [ `Msg of string ]) resultto_file p v will convert the Yaml value v to a string and write it to the file at path p.
val to_file_exn : Fpath.t -> Yaml.value -> unit