@kingjs/linq.element-at

1.0.9 • Public • Published

@kingjs/linq.element-at

Returns the element at a specified index in a sequence.

Usage

Return the 2nd element in the sequence 0, 1, 2 like this:

var elementAt = require('@kingjs/linq.element-at');
var sequence = require('@kingjs/enumerable.create');

elementAt.call(sequence(0, 1, 2), 1);

result:

1

API

declare function elementAt(
  this: Enumerable,
  index: number
): any

Interfaces

Parameters

  • this: The sequence to traverse.
  • index: The 0 based index of of the sequence to return.

Return Value

The 0 based index of of the sequence or an exception if the sequence is too short.

Install

With npm installed, run

$ npm install @kingjs/linq.element-at

See Also

Like Enumerable.ElementAt.

License

MIT

Analytics

/@kingjs/linq.element-at/

    Package Sidebar

    Install

    npm i @kingjs/linq.element-at

    Weekly Downloads

    0

    Version

    1.0.9

    License

    MIT

    Unpacked Size

    3.09 kB

    Total Files

    4

    Last publish

    Collaborators

    • kingces95