repl.txt (953B)
1 2 {{alias}}( iterator ) 3 Returns an iterator which iteratively computes `gamma(x+1) - 1` without 4 cancellation errors for small `x`. 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 r = {{alias:@stdlib/random/iter/uniform}}( -5.0, 5.0 ); 30 > var it = {{alias}}( r ); 31 > var v = it.next().value 32 <number> 33 > v = it.next().value 34 <number> 35 36 See Also 37 -------- 38