package reason-standard

  1. Overview
  2. Docs
module Bool : sig ... end

Functions for working with boolean values.

module Char : sig ... end

Functions for working with single characters.

module Int : sig ... end

The platform-dependant signed integer type.

module Integer : sig ... end
module Float : sig ... end

A module for working with floating-point numbers.

module String : sig ... end

Functions for working with "strings"

module Option : sig ... end
module Result : sig ... end
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 mutable, fixed length collection of elements which must have the same type.

module List : sig ... end

Immutable singly-linked list of elements which must have the same type.

module Set : sig ... end

A Set represents a unique collection of values.

module Map : sig ... end

A Map represents a unique mapping from keys to values.

module Container : sig ... end

This module contains module signatures which are used in functions which accept first class modules.

module Comparator : sig ... end

Comparator provide a way for custom data structures to be used with Maps and Sets

module Fun : sig ... end

Functions for working with functions.