GPS Exchange Format library/CLI in OCaml
at v1.0.0 284 B view raw
1(** GPX streaming writer using xmlm *) 2 3(** Write a GPX document to an xmlm output destination *) 4val write : ?validate:bool -> Xmlm.dest -> Doc.t -> (unit, Error.t) result 5 6(** Write a GPX document to a string *) 7val write_string : ?validate:bool -> Doc.t -> (string, Error.t) result