= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
package base
-
base
-
-
base.base_internalhash_types
-
base.caml
-
base.md5
-
base.shadow_stdlib
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Various combinators for functions.
A "pipe" operator. x |> f
is equivalent to f x
.
See ppx_pipebang for further details.
forever f
runs f ()
until it throws an exception and returns the exception. This function is useful for read_line loops, etc.
apply_n_times ~n f x
is the n
-fold application of f
to x
.
The identity function.
See also: Sys.opaque_identity
.