repl.txt (933B)
1 2 {{alias}}( iterator ) 3 Returns an iterator which rounds each iterated value to the nearest power of 4 two on a linear scale. 5 6 If an environment supports Symbol.iterator and a provided iterator is 7 iterable, the returned iterator is iterable. 8 9 Parameters 10 ---------- 11 iterator: Object 12 Input iterator. 13 14 Returns 15 ------- 16 iterator: Object 17 Iterator. 18 19 iterator.next(): Function 20 Returns an iterator protocol-compliant object containing the next 21 iterated value (if one exists) and a boolean flag indicating whether the 22 iterator is finished. 23 24 iterator.return( [value] ): Function 25 Finishes an iterator and returns a provided value. 26 27 Examples 28 -------- 29 > var it = {{alias}}( {{alias:@stdlib/random/iter/uniform}}( -100.0, 100.0 ) ); 30 > var r = it.next().value 31 <number> 32 > r = it.next().value 33 <number> 34 35 See Also 36 -------- 37