select -- select from a list, hash table, or string
See also
-
partition -- partition a set or list by values of a function
Ways to use select:
-
select(BasicList,Function) -- select elements from a list
-
select(BasicList,Type) -- select elements of a given type in a list
-
select(HashTable,Function) -- select part of a hash table
-
select(String,String) -- see select(String,String,String) -- select and reformat substrings matching a regular expression
-
select(String,String,String) -- select and reformat substrings matching a regular expression
-
select(Thing,Function) -- select elements from an object with an iterator
-
select(ZZ,BasicList,Function) -- select a limited number of elements from a list
-
select(ZZ,Function) -- select integers
-
select(ZZ,HashTable,Function) -- select a limited number of pairs from a hash table
-
select(Set,Function) -- see select(ZZ,Set,Function) -- select a part of a set
-
select(ZZ,Set,Function) -- select a part of a set