Fmlib_stdStandard Data Types.
module Interfaces : sig ... endStandard Module Types
module Array : sig ... endA thin wrapper around Stdlib.Array with additional functions and sets and maps based on arrays
module Btree : sig ... endSets and maps based on B trees.
module Deque : sig ... endA double ended queue. Insert from both ends, pop only from the front.
module Rb_array : sig ... endA Radix Balanced Array. A functional long array which allows fast random access, fast insertion and deletion at the rear end.
module Int : sig ... endModule to represent the type int
module List : sig ... endA thin wrapper around Stdlib.List which avoids throwing exceptions and with some additional monadic functions.
module Option : sig ... endOptional elements of a certain type.
module Result : sig ... endResult: Handling results of operations which can fail
module String : sig ... endA small wrapper around Stdlib.String with some extra functions.
module Void : sig ... endVoid.t is the type of an object which cannot exist.