Skip to content

urange

urange(stop): IterableIterator<uint64>

Defined in: util.ts:243

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:249

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:256

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>