Creates a lazy iterator that yields at most count values.
count
0.15.0
const firstThree = iterTake([10, 20, 30, 40, 50], 3);iterToArray(firstThree); // [10, 20, 30] Copy
const firstThree = iterTake([10, 20, 30, 40, 50], 3);iterToArray(firstThree); // [10, 20, 30]
Creates a lazy iterator that yields at most
countvalues.