urange
Algorand TypeScript / index / urange
Call Signature
Section titled “Call Signature”urange(
stop):IterableIterator<uint64>
Defined in: util.ts:161
Generates an iterable sequence from 0…stop inclusive
Parameters
Section titled “Parameters”The stop number of the sequence
Returns
Section titled “Returns”IterableIterator<uint64>
Call Signature
Section titled “Call Signature”urange(
start,stop):IterableIterator<uint64>
Defined in: util.ts:167
Generates an iterable sequence from start…stop inclusive
Parameters
Section titled “Parameters”The start number of the sequence
The stop number of the sequence
Returns
Section titled “Returns”IterableIterator<uint64>
Call Signature
Section titled “Call Signature”urange(
start,stop,step):IterableIterator<uint64>
Defined in: util.ts:174
Generates an iterable sequence from start…stop inclusive with increments of size step
Parameters
Section titled “Parameters”The start number of the sequence
The stop number of the sequence
The step size of the sequence
Returns
Section titled “Returns”IterableIterator<uint64>