fix containers.ml

This commit is contained in:
Simon Cruanes 2016-11-03 22:21:22 +01:00
parent 192f315f53
commit a231bfb9c4

View file

@ -10,18 +10,6 @@ This module is meant to be opened if one doesn't want to use both, say,
include CCList include CCList
end end
]} ]}
@since 0.4
Changed [Opt] to [Option] to better reflect that this module is about the
['a option] type, with [module Option = CCOpt].
@since 0.5
Renamed from [CCPervasives] in [containers.pervasives], to [Containers]
in the core library [containers]
@since 0.10
*) *)
module Array = struct module Array = struct
@ -29,7 +17,6 @@ module Array = struct
include CCArray include CCArray
end end
module Bool = CCBool module Bool = CCBool
module Error = CCError
module Float = CCFloat module Float = CCFloat
module Format = struct module Format = struct
include Format include Format
@ -79,16 +66,15 @@ end
module Vector = CCVector module Vector = CCVector
module Int64 = CCInt64 module Int64 = CCInt64
(** @since 0.13 *)
module IO = CCIO module IO = CCIO
(** @since NEXT_RELEASE *)
module Char = struct module Char = struct
include Char include Char
include (CCChar : module type of CCChar with type t := t) include (CCChar : module type of CCChar with type t := t)
end end
(** @since 0.17 *)
module Result = CCResult module Result = struct
(** @since 0.17 *) include Result
include CCResult
end