class ['a]
marshaller :
object
.. end
The marshaller class, instances of which can marshal and unmarshal objects
of a given type when requested.
method from_string : string -> 'a
Make a new 'a object from the given string, and return it.
method from_channel : Pervasives.in_channel -> 'a
Make a new 'a object from the given channel, and return it.
method from_file : string -> 'a
Make a new 'a object from the given file, and return it.
method to_channel : 'a -> Pervasives.out_channel -> unit
Marshal the given object into the given channel, and return unit.
method to_file : 'a -> string -> unit
Marshal the given object into the given file, and return unit.
method to_string : 'a -> string
Marshal the given object into a new string, and return the string.