Down_std.Txt_entries
Text entries parsing.
Parsing text made of entries separated by a special line.
val to_string : sep:string -> string list -> string
to_string ~sep es converts entries es to a string by concatening them and separating them by lines containing sep.
to_string ~sep es
es
sep
val of_string : sep:string -> string -> string list
of_string ~sep s are the entries of s. Entries are separated by trimmed lines that contain sep.
of_string ~sep s
s