iterCuNoneBy
Create an iterator which cumulatively tests whether every iterated value fails a test implemented by a predicate function.
Usage
var iterCuNoneBy = require( '@stdlib/iter/cunone-by' );
iterCuNoneBy( iterator, predicate[, thisArg] )
Returns an iterator which cumulatively tests whether every iterated value fails a test implemented by a predicate function.
var array2iterator = require( '@stdlib/array/to-iterator' );
function predicate( v ) {
return ( v > 0 );
}
var arr = array2iterator( [ 0, 0, 0, 1, 0 ] );
var it = iterCuNoneBy( arr, predicate );
var v = it.next().value;
// returns true
v = it.next().value;
// returns true
v = it.next().value;
// returns true
v = it.next().value;
// returns false
v = it.next().value;
// returns false
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
valueproperty and adoneproperty having abooleanvalue 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 ctx = {
'count': 0
};
var it = iterCuNoneBy( array2iterator( [ 1, 2, 3, 4 ] ), predicate, ctx );
// returns <Object>
var v = it.next().value;
// returns true
v = it.next().value;
// returns true
v = it.next().value;
// returns true
v = it.next().value;
// returns true
var count = ctx.count;
// returns 4
Notes
- A
predicatefunction is invoked for each iterated value until the first truthypredicatefunction return value. Upon encountering the first truthy return value, the returned iterator ceases to invoke thepredicatefunction and returnsfalsefor each subsequent iterated value of the provided inputiterator.
Examples
var randu = require( '@stdlib/random/iter/randu' );
var iterCuNoneBy = require( '@stdlib/iter/cunone-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 cumulatively tests whether every iterated value fails a test:
var it = iterCuNoneBy( riter, threshold );
// Perform manual iteration...
var r;
while ( true ) {
r = it.next();
if ( r.done ) {
break;
}
console.log( r.value );
}