rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
15 lines • 564 B
TypeScript
/**
* @public
* Like {@link arrayForEach} with integer range as input.
*
* @param from - The value to start from (inclusive).
* @param to - The value to finish with (inclusive).
* @param callback - Called for each value in the range.
*
* @remarks
* Where `from` and `to` are equal a length 1 array is returned, NaN input is not supported.
*
* See {@link arrayForEachRange}.
*/
export declare function arrayForEachRange(from: number, to: number, callback: (value: number, index: number) => void): void;
//# sourceMappingURL=array-for-each-range.d.ts.map