Go to the first, previous, next, last section, table of contents.


removeIf

Function: removeIf { fn list -> list }
file: 10-C-lists.muf
package: muf
status: alpha

The removeIf function scans list and constructs a new list identical to the original except for containing no elements satisfying fn.

The original list is never modified.

Stack:
:: 'b' = ;   [ 'a' 'b' 'c' ]l   removeIf   --> list
Stack:
list first   list second
Stack: 'a' 'c'


Go to the first, previous, next, last section, table of contents.