-
Notifications
You must be signed in to change notification settings - Fork 1
Utilities
Brad Sickles edited this page Nov 17, 2015
·
2 revisions
This page lists all the utility functions for exjs.
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.
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
).