A version of Seq.skip which doesn't throw an exception if there are fewer lines in the sequence than you have asked to skip.
2 people like thisPosted: 12 years ago by Kit Eason
Sometimes you need to take more elements from a sequence, e.g. look at https://stackoverflow.com/questions/12562327/how-to-do-seq-takewhile-one-item-in-f This solution allows fetching elements from the same sequence after applying takeWhile, skip, take and other sequence functions. However, need to remember to call function with right parameter: use 'true' to include current element into result sequence (after takeWhile for example)
2 people like thisPosted: 4 years ago by Ruslan Enikeev
Tries to skip the given number of items and returns the rest. Disposes the enumerator at the end.
3 people like thisPosted: 5 years ago by Matthias Dittrich