remove
Removes items from a sequence non-destructively, i.e. copies the sequence
> (setq a '(1 2 3 4 3 2 1))
(1 2 3 4 3 2 1)
> (remove 2 a)
(1 3 4 3 1)
> a
(1 2 3 4 3 2 1)
Previous slide
Next slide
Back to first slide
View graphic version