@kingjs/linq.skip
v1.0.8
Published
Generates a sequence identical to another sequence after bypassing a specified number of elements.
Readme
@kingjs/linq.skip
Generates a sequence identical to another sequence after bypassing a specified number of elements.
Usage
Skip the first 2 numbers in -1, -1, 0, 1, 2 like this:
var skip = require('@kingjs/linq.skip');
var sequence = require('@kingjs/enumerable.create');
var toArray = require('@kingjs/linq.to-array');
var result = skip.call(sequence(-2, -1, 0, 1, 2), 2);
toArray.call(result);result:
[0, 1, 2]API
declare function skip(
this: Enumerable,
count: number
): EnumerableInterfaces
Enumerable: See @kingjs/enumerable.define.
Parameters
this: The sequence.count: The number of elements to skip.
Return Value
A sequence where the first count elements have been skipped over.
Install
With npm installed, run
$ npm install @kingjs/linq.skipAcknowledgments
Like Element.Skip.
License
MIT
