Synopsis:
select(v,f) -- select elements of the list v that yield true when the function f is applied.
The order of the elements in the result will be the same as in the original list v, and the class will be the same, too.
i1 : select({1,2,3,4,5}, odd) |
i2 : select([1,2,3,4,5], odd) |