A partitioning operation divides an input set into two sections, without rearranging the elements, and then returning one of the sections.
Methods
Method | Description | Query expression |
---|---|---|
Skip | Skips elements up to a specified position in the collection | N/A |
SkipWhile | Skips elements based on a predicate function until an element does not satisfy the condition | N/A |
Take | Takes elements up to a specified position in a collection | N/A |
TakeWhile | … | N/A |
Chunk | Splits elements of a collection into chunks of a specified maximum size | N/A |