set element - part-cw/lambdanative GitHub Wiki

(set-element? element set)

Checks if the element is present in the set.

Parameter Description
element Set element
set Set

Example

> (define a (set-singleton 1 <))
> (set-element? 1 a)
#t