Functor Pickle.Defaults

module Defaults: 
functor (S : sig
type a 
module T: Typeable.Typeable  with type a = a
module E: Eq.Eq  with type a = a
val pickle : a -> Pickle.id Pickle.Write.m
val unpickle : Pickle.id -> a Pickle.Read.m
end) -> Pickle with type a = S.a
Parameters:
S : sig type a module T : Typeable.Typeable with type a = a module E : Eq.Eq with type a = a val pickle : a -> id Write.m val unpickle : id -> a Read.m end

type a 
module T: Typeable.Typeable  with type a = a
module E: Eq.Eq  with type a = a
val pickle : a -> Pickle.id Pickle.Write.m
val unpickle : Pickle.id -> a Pickle.Read.m
val to_buffer : Buffer.t -> a -> unit
val to_string : a -> string
val to_channel : Pervasives.out_channel -> a -> unit
val from_stream : char Stream.t -> a
val from_string : string -> a
val from_channel : Pervasives.in_channel -> a