Skip to content

urange

Algorand TypeScript


Algorand TypeScript / index / urange

urange(stop): IterableIterator<uint64>

Defined in: util.ts:161

Generates an iterable sequence from 0…stop inclusive

Uint64Compat

The stop number of the sequence

IterableIterator<uint64>

urange(start, stop): IterableIterator<uint64>

Defined in: util.ts:167

Generates an iterable sequence from start…stop inclusive

Uint64Compat

The start number of the sequence

Uint64Compat

The stop number of the sequence

IterableIterator<uint64>

urange(start, stop, step): IterableIterator<uint64>

Defined in: util.ts:174

Generates an iterable sequence from start…stop inclusive with increments of size step

Uint64Compat

The start number of the sequence

Uint64Compat

The stop number of the sequence

Uint64Compat

The step size of the sequence

IterableIterator<uint64>