null? ( set -- ? )
Factor handbook » The language » Collections » Sets » Operations on sets

Prev:intersect! ( set1 set2 -- set1 )
Next:diff ( set1 set2 -- set )


Vocabulary
sets

Inputs
seta set


Outputs
?a boolean


Word description
Tests whether the given set is empty. This outputs t when given a null set of any type.

Definition

GENERIC: null? ( set -- ? )


Methods