Skip to content
Brad Sickles edited this page Nov 17, 2015 · 2 revisions

This page lists all the utility functions for exjs.

anonymous

declare module exjs {
    function anonymous<T>(iterator: (en: IEnumerator<T>) => boolean): IEnumerableEx<T>;
}

Creates an IEnumerable with an anonymous IEnumerator. This helps the developer quickly create an enumerable while focusing on the enumeration procedure.

range

declare module exjs {
    function range(start: number, end: number, increment?: number): IEnumerable<number>;
}

Creates an IEnumerable of numbers based on start, end, and an optional increment. Resulting items are contained with the range [start, end).

Clone this wiki locally