search for:
select
-- select elements from a list or hash table
See also:
scan
-- apply a function to each element
apply
-- apply a function to each element
any
-- whether an element satisfies a condition
all
-- whether all elements satisfy a condition
member
-- test membership in a list
mutable
-- whether something may be modified
Ways to use
select
:
select(BasicList,Function)
-- select elements from a list
select(HashTable,Function)
-- select pairs from a hash table
select(ZZ,BasicList,Function)
-- select a limited number of elements from a list
select(ZZ,HashTable,Function)
-- select a limited number of pairs from a hash table
search for: