remove ( elt seq -- newseq )
Factor handbook » The language » Collections » Sequence operations » Adding and removing sequence elements

Prev:insert-nth ( elt n seq -- seq' )
Next:remove-eq ( elt seq -- newseq )


Vocabulary
sequences

Inputs
eltan object
seqa sequence


Outputs
newseqa new sequence


Word description
Outputs a new sequence containing all elements of the input sequence except for the given element.

Notes
This word uses equality comparison (=).

See also
remove-nth, remove-eq, remove-eq!, remove!, remove-nth!

Definition


: remove ( elt seq -- newseq ) [ = ] with reject ;