title |
---|
Sequences |
You want to create an empty sequence.
There are two possible ways of creating new sequences.
You want to concatenate two or more sequences into once sequence.
You have a sequence containing some duplicate elements, and you want to have only unique values.
You want to apply a same function on all members of a sequence without creating for-loop.
You want to filter the sequence so only values satisfying some predicate are returned.
You want to check if all values satisfy some predicate.
You want to check if any value satisfies some predicate.