VocabularysetsInputsOutputsWord descriptionOutputs a set consisting of elements present in
set1 but not
set2, comparing elements for equality.
This word has a default definition which works for all sets, but set implementations may override the default for efficiency.
ExamplesUSING: sets prettyprint ;
{ 1 2 3 } { 2 3 4 } diff .
{ 1 }
See alsointersect,
unionDefinitionMethods