Take any number of iterators and run them in a single series, one after the other.
import { chain, range } from "yta/sync";[...chain(range(0, 3), range(3, 6))];// => [0, 1, 2, 3, 4, 5] Copy
import { chain, range } from "yta/sync";[...chain(range(0, 3), range(3, 6))];// => [0, 1, 2, 3, 4, 5]
See also:
Take any number of iterators and run them in a single series, one after the other.
See also: