iterCuSomeBy
Create an iterator which cumulatively tests whether at least
n
iterated values pass a test implemented by a predicate function.
Usage
var iterCuSomeBy = require( '@stdlib/iter/cusome-by' );
iterCuSomeBy( iterator, n, predicate[, thisArg] )
Returns an iterator which cumulatively tests whether at least n
iterated values pass a test implemented by a predicate
function.
var array2iterator = require( '@stdlib/array/to-iterator' );
function isPositive( v ) {
return ( v > 0 );
}
var arr = array2iterator( [ 0, 0, 0, 1, 1 ] );
var it = iterCuSomeBy( arr, 2, isPositive );
var v = it.next().value;
// returns false
v = it.next().value;
// returns false
v = it.next().value;
// returns false
v = it.next().value;
// returns false
v = it.next().value;
// returns true
var bool = it.next().done;
// returns true
The returned iterator protocol-compliant object has the following properties:
- next: function which returns an iterator protocol-compliant object containing the next iterated value (if one exists) assigned to a
value
property and adone
property having aboolean
value indicating whether the iterator is finished. - return: function which closes an iterator and returns a single (optional) argument in an iterator protocol-compliant object.
A predicate
function is provided two arguments:
- value: iterated value
- index: iteration index (zero-based)
To set the predicate
function execution context, provide a thisArg
.
var array2iterator = require( '@stdlib/array/to-iterator' );
function predicate( v ) {
this.count += 1;
return ( v > 0 );
}
var arr = array2iterator( [ 0, 0, 1, 1, 1 ] );
var ctx = {
'count': 0
};
var it = iterCuSomeBy( arr, 3, predicate, ctx );
// returns <Object>
var v = it.next().value;
// returns false
v = it.next().value;
// returns false
v = it.next().value;
// returns false
v = it.next().value;
// returns false
v = it.next().value;
// returns true
var count = ctx.count;
// returns 5
- A
predicate
function is invoked for each iterated value until thenth
truthypredicate
function return value. The returned iterator continues iterating until it reaches the end of the input iterator, even after the condition is met.
Examples
var randu = require( '@stdlib/random/iter/randu' );
var iterCuSomeBy = require( '@stdlib/iter/cusome-by' );
function threshold( r ) {
return ( r > 0.95 );
}
// Create an iterator which generates uniformly distributed pseudorandom numbers:
var opts = {
'iter': 100
};
var riter = randu( opts );
// Create an iterator which tracks whether at least two values have exceeded the threshold:
var it = iterCuSomeBy( riter, 2, threshold );
// Perform manual iteration...
var r;
while ( true ) {
r = it.next();
if ( r.done ) {
break;
}
console.log( r.value );
}