Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Describes the basic functions
Basic functions
Produce a function that returns its first argument. const a b
returns always a
.
Produce the uncurryfied version of the parametric function. uncurry f (x, y)
is equivalent f x y
.
Produce the curryfied version of the parametric function curry f x y
is equivalent f (x, y)
.