Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Standard
module Bool : sig ... end
Functions for working with boolean (true
or false
) values.
module Char : sig ... end
Functions for working with single characters.
module Int : sig ... end
Fixed precision integers
module Integer : sig ... end
Arbitrary precision integers.
module Float : sig ... end
Functions for working with floating point numbers.
module String : sig ... end
Functions for working with "strings"
module Option : sig ... end
Functions for working with optional values.
module Result : sig ... end
Functions for working with computations which may fail.
module Tuple : sig ... end
Functions for manipulating pairs of values
module Tuple3 : sig ... end
Functions for manipulating trios of values
module Array : sig ... end
A fixed lenfth collection of values
module List : sig ... end
Arbitrary length, singly linked lists
module Set : sig ... end
A collection of unique values
module Map : sig ... end
A collection of key-value pairs
module Comparator : sig ... end
module Fun : sig ... end
Functions for working with functions.