-
Notifications
You must be signed in to change notification settings - Fork 0
module std.combinator
Jan Špaček edited this page Apr 12, 2016
·
1 revision
Module std.combinator
defines the most basic combinators.
-
(identity x)
returnsx
. -
(constant-<n> x)
returns a function that takes<n>
arguments and returnsx
. There are versionsconstant-0
toconstant-4
.