package tablecloth-native

  1. Overview
  2. Docs
Native OCaml library implementing Tablecloth, a cross-platform standard library for OCaml and Rescript

Install

dune-project
 Dependency

Authors

Maintainers

Sources

0.0.8.tar.gz
md5=0c71dd4035d6fa4978baabc3c932dba3
sha512=44ba09f1ff43e61403703cc244e91e0f8062bd9da998f031430d701a4de148b02878f7f881303f6ded261176f21926ab5ba00a313510ed8e2d2f252b3fd00054

doc/tablecloth-native/Tablecloth/index.html

Module Tablecloth

module Bool : sig ... end

Functions for working with boolean (true or false) values.

module Char : sig ... end

Functions for working with single characters.

module String : sig ... end

Functions for working with "strings"

module Int : sig ... end

Fixed precision integers

module Float : sig ... end

Functions for working with floating point numbers.

module Container : sig ... end

Interfaces for use with container types like Array or List

module Array : sig ... end

A fixed lenfth collection of values

module List : sig ... end

Arbitrary length, singly linked lists

module Option : sig ... end

Functions for working with optional values.

module Result : sig ... end

Functions for working with computations which may fail.

module Tuple2 : sig ... end

Functions for manipulating tuples of length two

module Tuple3 : sig ... end

Functions for manipulating tuples of length three

module Comparator : sig ... end
module Set : sig ... end

A collection of unique values

module Map : sig ... end

A collection of key-value pairs

module Fun : sig ... end

Functions for working with functions.