S9 LIB  (complement procedure)               ==>  procedure
        (compose procedure1 procedure2 ...)  ==>  procedure
        (const <expression>)                 ==>  procedure
        (curry procedure object ...)         ==>  procedure
        (fork procedure1 procedure2)         ==>  procedure

        (load-from-library "hof.scm")

COMPOSE combines the given procedures to form a new procedure

      (lambda args (p1 ... (apply pN args) ...))

where the procedures P1 through P(N-1) must be unary; the last
procedure may take any number of arguments.

COMPLEMENT returns a predicate expressing the complement of the given
procedure (which should also be a predicate).

CONST generates a procedure that discards any arguments passed to it
and always evaluates to <expression>. <Expression> evaluates each time
the procedure delivered by CONST is called.

CURRY partially applies PROCEDURE to the given OBJECTs, resulting
in a new procedure

      (lambda args (apply p object ... args))

Application of the given PROCEDURE is finished when the procedure
returned by CURRY is applied to some arguments.

FORK arranges two procedures to form a fork:

      ((fork f g) x1 ... xN)  -->  (f (g x1) ... (g xN))

((complement pair?) '(1 2 3))  ==>  #f
((complement eq?) 'foo 'bar)   ==>  #t

((compose car cdr) '(1 2 3))         ==>  2
((compose list reverse list) 1 2 3)  ==>  ((3 2 1))

((const (+ 1 2)))        ==>  3
((const (+ 1 2)) 3 4 5)  ==>  3

((curry + 1) 9)              ==>  10
((curry map list) '(1 2 3))  ==>  ((1) (2) (3))

((fork < car) '(1 . a) '(2 . b) '(3 . c))  ==>  #t
((fork append reverse) '(3 2 1) '(6 5 4))  ==>  (1 2 3 4 5 6)
