The range function return a Iterable | Iterable of numbers, starting from from,increments by 1 and stops at to.
range
Iterable
from
to
import { ListCollection, range } from "@daiso-tech/core/collection";const collection = new ListCollection(range(1, 10))collection.toArray();// [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] Copy
import { ListCollection, range } from "@daiso-tech/core/collection";const collection = new ListCollection(range(1, 10))collection.toArray();// [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
IMPORT_PATH: "@daiso-tech/core/collection"
"@daiso-tech/core/collection"
The
range
function return a Iterable |Iterable
of numbers, starting fromfrom
,increments by 1 and stops atto
.