8.16.0.4
6 Functions
(require scramble/function) | package: scramble-lib |
procedure
(K v ...) → procedure?
v : any/c
The resulting constant function’s arity is (arity-at-least 0); that is, it accepts (and discards) any number of positional arguments, but it does not accept keyword arguments. See const for a single-valued version whose result accepts keyword arguments.
Examples:
> (define always-zero (K 0)) > (map always-zero '(1 2 3)) '(0 0 0)
> (define two-falses (K #f #f))
> (define-values (head tail) (with-handlers ([exn? two-falses]) (values (car '()) (cdr '()))))
procedure
(K0 v ...) → procedure?
v : any/c
Like K, but the resulting constant function’s arity is 0 (with no
keywords).
procedure
f : procedure? v : any/c
Calls f on the arguments v ...; equivalent to (f v ...). Primarily useful as an argument to higher-order functions.
Examples: