difference

Returns a sequence containing the elements of one sequence that are not members of a second.  You can supply a membership test function as test.

difference(#(1,2,3), #(2,3,4));
⇒ #(1)

Exported from

Modifiers

open

Arguments

sequence-1An instance of <sequence>.
sequence-2An instance of <sequence>.
test:An instance of <function>.  The default is ==.

Values

result-sequenceAn instance of <sequence>.
Ultimately, there will be several, more logically separate libraries that extend Dylan or provide an application framework for users.
The common-dylan module.
Miscellaneous extensions to the Dylan language.
The class of collections whose keys are consecutive integers starting from zero.
The class of objects that can be applied to arguments.
Compares two objects for identity.