You are looking at historical revision 1340 of this page. It may differ significantly from its current revision.

complement

[procedure] (complement PROC)

Returns a procedure that returns the boolean inverse of PROC.

(complement PROC) <=> (lambda (x) (not (PROC x)))
(constantly X) <=> (lambda args X)