From 75203d8b6ecac85cbc48fca499fb1b1c984c8474 Mon Sep 17 00:00:00 2001 From: praneki Date: Tue, 5 Mar 2024 13:22:57 +0530 Subject: [PATCH 01/11] feat: added @stdlib/iter/do-while-each --- .../@stdlib/iter/do-while-each/README.md | 238 +++++++++++ .../iter/do-while-each/benchmark/benchmark.js | 97 +++++ .../@stdlib/iter/do-while-each/docs/repl.txt | 57 +++ .../iter/do-while-each/docs/types/index.d.ts | 145 +++++++ .../iter/do-while-each/docs/types/test.ts | 120 ++++++ .../iter/do-while-each/examples/index.js | 52 +++ .../@stdlib/iter/do-while-each/lib/index.js | 62 +++ .../@stdlib/iter/do-while-each/lib/main.js | 166 ++++++++ .../@stdlib/iter/do-while-each/package.json | 69 ++++ .../@stdlib/iter/do-while-each/test/test.js | 368 ++++++++++++++++++ 10 files changed, 1374 insertions(+) create mode 100644 lib/node_modules/@stdlib/iter/do-while-each/README.md create mode 100644 lib/node_modules/@stdlib/iter/do-while-each/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/iter/do-while-each/docs/repl.txt create mode 100644 lib/node_modules/@stdlib/iter/do-while-each/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/iter/do-while-each/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/iter/do-while-each/examples/index.js create mode 100644 lib/node_modules/@stdlib/iter/do-while-each/lib/index.js create mode 100644 lib/node_modules/@stdlib/iter/do-while-each/lib/main.js create mode 100644 lib/node_modules/@stdlib/iter/do-while-each/package.json create mode 100644 lib/node_modules/@stdlib/iter/do-while-each/test/test.js diff --git a/lib/node_modules/@stdlib/iter/do-while-each/README.md b/lib/node_modules/@stdlib/iter/do-while-each/README.md new file mode 100644 index 000000000000..6f3638536eea --- /dev/null +++ b/lib/node_modules/@stdlib/iter/do-while-each/README.md @@ -0,0 +1,238 @@ + + +# iterDoWhileEach + +> Create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value.The condition is evaluated **after** executing the provided function; thus, `fcn` **always** executes at least once. + + + +
+ +
+ + + + + +
+ +## Usage + +```javascript +var iterDoWhileEach = require( '@stdlib/iter/do-while-each' ); +``` + +#### iterDoWhileEach( iterator, predicate, fcn\[, thisArg] ) + +Returns an iterator which invokes a function for each iterated value before returning the iterated value until either a predicate function returns false or the iterator has iterated over all values. The condition is evaluated after executing the provided function (fcn). + +```javascript +var array2iterator = require( '@stdlib/array/to-iterator' ); + +function predicate( v ) { + return v < 3; +} + +function assert( v ) { + if ( v !== v ) { + throw new Error( 'should not be NaN' ); + } +} + +var it = iterDoWhileEach( array2iterator( [ 1, 2, 3, 4 ] ), predicate, assert ); +// returns {} + +var r = it.next().value; +// returns 1 + +r = it.next().value; +// returns 2 + +r = it.next().value; +// undefined + +// ... +``` + +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 a `done` property having a boolean 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. + +Both the `predicate` function and the function to invoke for each iterated value are provided two arguments: + +- **value**: iterated value +- **index**: iteration index (zero-based) + +```javascript +var array2iterator = require( '@stdlib/array/to-iterator' ); + +function predicate( v ) { + return v < 3; +} + +function assert( v, i ) { + if ( i > 1 ) { + throw new Error( 'unexpected error' ); + } +} + +var it = iterDoWhileEach( array2iterator( [ 1, 2, 3, 4 ] ), predicate, assert ); +// returns + +var r = it.next().value; +// returns 1 + +r = it.next().value; +// returns 2 + +r = it.next().value; +// undefined +// ... +``` + +To set the execution context for `fcn`, +provide a `thisArg`. + + + +```javascript +var array2iterator = require( '@stdlib/array/to-iterator' ); + +function assert( v ) { + this.count += 1; + if ( v !== v ) { + throw new Error( 'should not be NaN' ); + } +} + +function predicate( v ) { + return v < 3; +} + +var ctx = { + 'count': 0 +}; + +var it = +iterDoWhileEach( array2iterator( [ 1, 2, 3 ] ), predicate, assert, ctx ); +// returns + +var r = it.next().value; +// returns 1 + +r = it.next().value; +// returns 2 + +r = it.next().value; + +// undefined + +var count = ctx.count; +// returns 3 +``` + + + + + + + +
+ +## Notes + +- If an environment supports `Symbol.iterator` **and** a provided iterator is iterable, the returned iterator is iterable. + +
+ + + + + +
+ +## Examples + + + +```javascript +var randu = require( '@stdlib/random/iter/randu' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var iterDoWhileEach = require( '@stdlib/iter/do-while-each' ); + +function assert( v ) { + if ( isnan( v ) ) { + throw new Error( 'should not be NaN' ); + } +} + +function predicate( v ) { + return v <= 0.75; +} + +// Create a seeded iterator for generating pseudorandom numbers: +var rand = randu({ + 'seed': 1234, + 'iter': 10 +}); + +// Create an iterator which validates generated numbers: +var it = iterDoWhileEach( rand, predicate, assert ); + +// Perform manual iteration... +var r; +while ( true ) { + r = it.next(); + if ( r.done ) { + break; + } + console.log( r.value ); +} +``` + +
+ + + + + +
+ +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/iter/do-while-each/benchmark/benchmark.js b/lib/node_modules/@stdlib/iter/do-while-each/benchmark/benchmark.js new file mode 100644 index 000000000000..f1510eab7a6c --- /dev/null +++ b/lib/node_modules/@stdlib/iter/do-while-each/benchmark/benchmark.js @@ -0,0 +1,97 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var bench = require( '@stdlib/bench' ); +var randu = require( '@stdlib/random/iter/randu' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var isIteratorLike = require( '@stdlib/assert/is-iterator-like' ); +var pkg = require( './../package.json' ).name; +var iterDoWhileEach = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var rand; + var iter; + var i; + + rand = randu(); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + iter = iterDoWhileEach( rand, predicate, fcn ); + if ( typeof iter !== 'object' ) { + b.fail( 'should return an object' ); + } + } + b.toc(); + if ( !isIteratorLike( iter ) ) { + b.fail( 'should return an iterator protocol-compliant object' ); + } + b.pass( 'benchmark finished' ); + b.end(); + + function fcn( v ) { + if ( isnan( v ) ) { + b.fail( 'should not return NaN' ); + } + } + + function predicate( v ) { + return ( v < 0.5 ); + } +}); + +bench( pkg+'::iteration', function benchmark( b ) { + var rand; + var iter; + var z; + var i; + + rand = randu(); + iter = iterDoWhileEach( rand, predicate, fcn ); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + z = iter.next().value; + if ( isnan( z ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( z ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); + + function fcn( v ) { + if ( isnan( v ) ) { + b.fail( 'should not return NaN' ); + } + } + + function predicate( v ) { + return ( v < 0.5 ); + } +}); diff --git a/lib/node_modules/@stdlib/iter/do-while-each/docs/repl.txt b/lib/node_modules/@stdlib/iter/do-while-each/docs/repl.txt new file mode 100644 index 000000000000..c93c556e79a6 --- /dev/null +++ b/lib/node_modules/@stdlib/iter/do-while-each/docs/repl.txt @@ -0,0 +1,57 @@ + +{{alias}}( iterator, predicate, fcn[, thisArg] ) + Returns an iterator which invokes a function for each iterated value before + returning the iterated value until either a predicate function returns false + or the iterator has iterated over all values. + + The condition is evaluated *after* executing the provided function; thus, + `fcn` *always* executes at least once. + + When invoked, both input functions are provided two arguments: + + - value: iterated value + - index: iteration index (zero-based) + + If an environment supports Symbol.iterator, the returned iterator is + iterable. + + Parameters + ---------- + iterator: Object + Input iterator. + + predicate: Function + Function which indicates whether to continue iterating. + + fcn: Function + Function to invoke for each iterated value. + + thisArg: any (optional) + Execution context. + + Returns + ------- + iterator: Object + Iterator. + + iterator.next(): Function + Returns an iterator protocol-compliant object containing the next + iterated value (if one exists) and a boolean flag indicating whether the + iterator is finished. + + iterator.return( [value] ): Function + Finishes an iterator and returns a provided value. + + Examples + -------- + > function predicate( v ) { return v === v }; + > function f( v ) { if ( v !== v ) { throw new Error( 'beep' ); } }; + > var it = {{alias}}( {{alias:@stdlib/random/iter/randu}}(), predicate, f ); + > var r = it.next().value + + > r = it.next().value + + + See Also + -------- + diff --git a/lib/node_modules/@stdlib/iter/do-while-each/docs/types/index.d.ts b/lib/node_modules/@stdlib/iter/do-while-each/docs/types/index.d.ts new file mode 100644 index 000000000000..936a3de4df99 --- /dev/null +++ b/lib/node_modules/@stdlib/iter/do-while-each/docs/types/index.d.ts @@ -0,0 +1,145 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// TypeScript Version: 4.1 + +/// + +import { Iterator as Iter, IterableIterator } from '@stdlib/types/iter'; + +// Define a union type representing both iterable and non-iterable iterators: +type Iterator = Iter | IterableIterator; + +/** +* Callback function invoked for each iterated value. +* +* @returns callback result +*/ +type nullaryCallback = () => any; + +/** +* Callback function invoked for each iterated value. +* +* @param value - iterated value +* @returns callback result +*/ +type unaryCallback = ( value: any ) => any; + +/** +* Callback function invoked for each iterated value. +* +* @param value - iterated value +* @param i - iteration index +* @returns callback result +*/ +type binaryCallback = ( value: any, i: number ) => any; + +/** +* Callback function invoked for each iterated value. +* +* @param value - iterated value +* @param i - iteration index +* @returns callback result +*/ +type Callback = nullaryCallback | unaryCallback | binaryCallback; + +/** +* Predicate function invoked for each iterated value. +* +* @returns a boolean indicating whether to continue iterating or not +*/ +type nullaryPredicate = () => boolean; + +/** +* Predicate function invoked for each iterated value. +* +* @param value - iterated value +* @returns a boolean indicating whether to continue iterating or not +*/ +type unaryPredicate = ( value: any ) => boolean; + +/** +* Predicate function invoked for each iterated value. +* +* @param value - iterated value +* @param i - iteration index +* @returns a boolean indicating whether to continue iterating or not +*/ +type binaryPredicate = ( value: any, i: number ) => boolean; + +/** +* Predicate function invoked for each iterated value. +* +* @param value - iterated value +* @param i - iteration index +* @returns a boolean indicating whether to continue iterating or not +*/ +type Predicate = nullaryPredicate | unaryPredicate | binaryPredicate; + +/** +* Returns an iterator which invokes a function for each iterated value **before** returning the iterated value until either a predicate function returns `false` or the iterator has iterated over all values. +* The condition is evaluated *after* executing the provided function; thus, fcn` *always* executes at least once. +* +* ## Notes +* +* - When invoked, both the `predicate` and callback functions are provided two arguments: +* +* - **value**: iterated value +* - **index**: iteration index (zero-based) +* +* - If an environment supports `Symbol.iterator` **and** a provided iterator is iterable, the returned iterator is iterable. +* +* @param iterator - input iterator +* @param predicate - function which indicates whether to continue iterating +* @param fcn - callback function to invoke for each iterated value +* @param thisArg - execution context +* @returns iterator +* +* @example +* var array2iterator = require( '@stdlib/array/to-iterator' ); +* +* function predicate( v ) { +* return v < 3; +* } +* +* function assert( v, i ) { +* if ( i > 1 ) { +* throw new Error( 'unexpected error' ); +* } +* } +* +* var it = iterDoWhileEach( array2iterator( [ 1, 2, 3, 4 ] ), predicate, assert ); +* // returns {} +* +* var r = it.next().value; +* // returns 1 +* +* r = it.next().value; +* // returns 2 +* +* r = it.next().value; +* // undefined +* +* // ... +*/ +declare function iterDoWhileEach( iterator: Iterator, predicate: Predicate, fcn: Callback, thisArg?: any ): Iterator; + + +// EXPORTS // + +export = iterDoWhileEach; diff --git a/lib/node_modules/@stdlib/iter/do-while-each/docs/types/test.ts b/lib/node_modules/@stdlib/iter/do-while-each/docs/types/test.ts new file mode 100644 index 000000000000..665dd8b1bdec --- /dev/null +++ b/lib/node_modules/@stdlib/iter/do-while-each/docs/types/test.ts @@ -0,0 +1,120 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import iterDoWhileEach = require( './index' ); + +/** +* Returns an iterator protocol-compliant object. +* +* @returns iterator protocol-compliant object +*/ +function iterator(): any { + /** + * Implements the iterator protocol `next` method. + * + * @returns iterator protocol-compliant object + */ + function next(): any { + return { + 'value': true, + 'done': false + }; + } + + return { + 'next': next + }; +} + +/** +* Conditional predicate function. +* +* @param v - iterated value +* @param i - iteration index +* @returns a boolean indicating whether to continue iterating or not +*/ +function predicate( v: any, i: number ): boolean { + return v === v && i === i; +} + +/** +* Callback function. +* +* @param v - iterated value +* @param i - iteration index +* @returns callback result +*/ +function fcn( v: any, i: number ): any { + if ( v !== v || i !== i ) { + throw new Error( 'something went wrong' ); + } +} + + +// TESTS // + +// The function returns an iterator... +{ + iterDoWhileEach( iterator(), predicate, fcn ); // $ExpectType Iterator + iterDoWhileEach( iterator(), predicate, fcn, {} ); // $ExpectType Iterator + iterDoWhileEach( iterator(), predicate, fcn, null ); // $ExpectType Iterator +} + +// The compiler throws an error if the function is provided a first argument which is not an iterator protocol-compliant object... +{ + iterDoWhileEach( '5', predicate, fcn ); // $ExpectError + iterDoWhileEach( 5, predicate, fcn ); // $ExpectError + iterDoWhileEach( true, predicate, fcn ); // $ExpectError + iterDoWhileEach( false, predicate, fcn ); // $ExpectError + iterDoWhileEach( null, predicate, fcn ); // $ExpectError + iterDoWhileEach( undefined, predicate, fcn ); // $ExpectError + iterDoWhileEach( [], predicate, fcn ); // $ExpectError + iterDoWhileEach( {}, predicate, fcn ); // $ExpectError + iterDoWhileEach( ( x: number ): number => x, predicate, fcn ); // $ExpectError +} + +// The compiler throws an error if the function is provided a second argument which is not a valid predicate function... +{ + iterDoWhileEach( iterator(), '5', fcn ); // $ExpectError + iterDoWhileEach( iterator(), 5, fcn ); // $ExpectError + iterDoWhileEach( iterator(), true, fcn ); // $ExpectError + iterDoWhileEach( iterator(), false, fcn ); // $ExpectError + iterDoWhileEach( iterator(), null, fcn ); // $ExpectError + iterDoWhileEach( iterator(), undefined, fcn ); // $ExpectError + iterDoWhileEach( iterator(), [], fcn ); // $ExpectError + iterDoWhileEach( iterator(), {}, fcn ); // $ExpectError +} + +// The compiler throws an error if the function is provided a third argument which is not a valid callback function... +{ + iterDoWhileEach( iterator(), predicate, '5' ); // $ExpectError + iterDoWhileEach( iterator(), predicate, 5 ); // $ExpectError + iterDoWhileEach( iterator(), predicate, true ); // $ExpectError + iterDoWhileEach( iterator(), predicate, false ); // $ExpectError + iterDoWhileEach( iterator(), predicate, null ); // $ExpectError + iterDoWhileEach( iterator(), predicate, undefined ); // $ExpectError + iterDoWhileEach( iterator(), predicate, [] ); // $ExpectError + iterDoWhileEach( iterator(), predicate, {} ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + iterDoWhileEach(); // $ExpectError + iterDoWhileEach( iterator() ); // $ExpectError + iterDoWhileEach( iterator(), predicate ); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/iter/do-while-each/examples/index.js b/lib/node_modules/@stdlib/iter/do-while-each/examples/index.js new file mode 100644 index 000000000000..a81132a159f7 --- /dev/null +++ b/lib/node_modules/@stdlib/iter/do-while-each/examples/index.js @@ -0,0 +1,52 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +var randu = require( '@stdlib/random/iter/randu' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var iterDoWhileEach = require( '@stdlib/iter/do-while-each/lib' ); + +function assert( v ) { + if ( isnan( v ) ) { + throw new Error( 'should not be NaN' ); + } +} + +function predicate( v ) { + return ( v <= 0.75 ); +} + +// Create a seeded iterator for generating pseudorandom numbers: +var rand = randu({ + 'seed': 1234, + 'iter': 10 +}); + +// Create an iterator which validates generated numbers: +var it = iterDoWhileEach( rand, predicate, assert ); + +// Iterate over the iterator: +var r; +while (true) { + r = it.next(); + if (r.done) { + break; + } + console.log(r.value); +} diff --git a/lib/node_modules/@stdlib/iter/do-while-each/lib/index.js b/lib/node_modules/@stdlib/iter/do-while-each/lib/index.js new file mode 100644 index 000000000000..1f0655990afd --- /dev/null +++ b/lib/node_modules/@stdlib/iter/do-while-each/lib/index.js @@ -0,0 +1,62 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2023 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +/** +* Create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value. +* +* @module @stdlib/iter/do-while-each +* +* @example +* var array2iterator = require( '@stdlib/array/to-iterator' ); +* var iterDoWhileEach = require( '@stdlib/iter/do-while-each' ); +* +* function predicate( v ) { +* return v < 3; +* } +* +* function assert( v ) { +* if ( v !== v ) { +* throw new Error( 'should not be NaN' ); +* } +* } +* +* var it = iterDoWhileEach( array2iterator( [ 1, 2, 3, 4 ] ), predicate, assert ); +* // returns {} +* +* var r = it.next().value; +* // returns 1 +* +* r = it.next().value; +* // returns 2 +* +* r = it.next().value; +* // returns 3 +* +* // ... +*/ + +// MODULES // + +var main = require( './main.js' ); + + +// EXPORTS // + +module.exports = main; diff --git a/lib/node_modules/@stdlib/iter/do-while-each/lib/main.js b/lib/node_modules/@stdlib/iter/do-while-each/lib/main.js new file mode 100644 index 000000000000..1bb1d655e9d4 --- /dev/null +++ b/lib/node_modules/@stdlib/iter/do-while-each/lib/main.js @@ -0,0 +1,166 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var setReadOnly = require( '@stdlib/utils/define-nonenumerable-read-only-property' ); +var isFunction = require( '@stdlib/assert/is-function' ); +var isIteratorLike = require( '@stdlib/assert/is-iterator-like' ); +var iteratorSymbol = require( '@stdlib/symbol/iterator' ); +var format = require( '@stdlib/string/format' ); + + +// MAIN // + +/** +* Returns an iterator which invokes a function for each iterated value before returning the iterated value until either a predicate function returns `false` or the iterator has iterated over all values. +* The condition is evaluated **after** executing the provided function; thus, `fcn` **always** executes at least once. +* +* @param {Iterator} iterator - input iterator +* @param {Function} predicate - function which indicates whether to continue iterating +* @param {Function} fcn - function to invoke +* @param {*} [thisArg] - execution context +* @throws {TypeError} first argument must be an iterator protocol-compliant object +* @throws {TypeError} second argument must be a function +* @throws {TypeError} third argument must be a function +* @returns {Iterator} iterator +* +* @example +* var array2iterator = require( '@stdlib/array/to-iterator' ); +* var iterDoWhileEach = require( '@stdlib/iter/do-while-each' ); +* +* function predicate( v ) { +* return v < 3; +* } +* +* function assert( v ) { +* if ( v !== v ) { +* throw new Error( 'should not be NaN' ); +* } +* } +* +* var it = iterDoWhileEach( array2iterator( [ 1, 2, 3, 4 ] ), predicate, assert ); +* // returns {} +* +* var r = it.next().value; +* // returns 1 +* +* r = it.next().value; +* // returns 2 +* +* r = it.next().value; +* // undefined +* +* // ... +*/ +function iterDoWhileEach( iterator, predicate, fcn, thisArg ) { + var iter; + var FLG; + var i; + if ( !isIteratorLike( iterator ) ) { + throw new TypeError( format( 'invalid argument. First argument must be an iterator protocol-compliant object. Value: `%s`.', iterator ) ); + } + if ( !isFunction( predicate ) ) { + throw new TypeError( format( 'invalid argument. Second argument must be a function. Value: `%s`.', predicate ) ); + } + if ( !isFunction( fcn ) ) { + throw new TypeError( format( 'invalid argument. Third argument must be a function. Value: `%s`.', fcn ) ); + } + i = -1; + + // Create an iterator protocol-compliant object: + iter = {}; + setReadOnly( iter, 'next', next ); + setReadOnly( iter, 'return', end ); + + // If an environment supports `Symbol.iterator`, make the iterator iterable: + if ( iteratorSymbol && isFunction( iterator[ iteratorSymbol ] ) ) { + setReadOnly( iter, iteratorSymbol, factory ); + } + return iter; + + /** + * Returns an iterator protocol-compliant object containing the next iterated value. + * + * @private + * @returns {Object} iterator protocol-compliant object + */ + function next() { + var v; + i += 1; + if ( FLG ) { + return { + 'done': true + }; + } + v = iterator.next(); + if ( v.done ) { + FLG = true; + return v; + } + v = v.value; + fcn.call( thisArg, v, i ); + if ( predicate( v, i ) === false ) { + FLG = true; + return { + 'done': true + }; + } + return { + 'value': v, + 'done': false + }; + } + + /** + * Finishes an iterator. + * + * @private + * @param {*} [value] - value to return + * @returns {Object} iterator protocol-compliant object + */ + function end( value ) { + FLG = true; + if ( arguments.length ) { + return { + 'value': value, + 'done': true + }; + } + return { + 'done': true + }; + } + + /** + * Returns a new iterator. + * + * @private + * @returns {Iterator} iterator + */ + function factory() { + return iterDoWhileEach( iterator[ iteratorSymbol ](), predicate, fcn, thisArg ); // eslint-disable-line max-len + } +} + + +// EXPORTS // + +module.exports = iterDoWhileEach; diff --git a/lib/node_modules/@stdlib/iter/do-while-each/package.json b/lib/node_modules/@stdlib/iter/do-while-each/package.json new file mode 100644 index 000000000000..4dbc4d4b523e --- /dev/null +++ b/lib/node_modules/@stdlib/iter/do-while-each/package.json @@ -0,0 +1,69 @@ +{ + "name": "@stdlib/iter/do-while-each", + "version": "0.0.0", + "description": "Create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value.The condition is evaluated after executing the provided function; thus, fcn always executes at least once.", + "license": "Apache-2.0", + "author": { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + }, + "contributors": [ + { + "name": "The Stdlib Authors", + "url": "https://github.com/stdlib-js/stdlib/graphs/contributors" + } + ], + "main": "./lib", + "directories": { + "benchmark": "./benchmark", + "doc": "./docs", + "example": "./examples", + "lib": "./lib", + "test": "./test" + }, + "types": "./docs/types", + "scripts": {}, + "homepage": "https://github.com/stdlib-js/stdlib", + "repository": { + "type": "git", + "url": "git://github.com/stdlib-js/stdlib.git" + }, + "bugs": { + "url": "https://github.com/stdlib-js/stdlib/issues" + }, + "dependencies": {}, + "devDependencies": {}, + "engines": { + "node": ">=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdutils", + "stdutil", + "utilities", + "utility", + "utils", + "util", + "do-while-each", + "whileeach", + "while", + "each", + "iterator", + "iterable", + "iterdowhileeach", + "iterate" + ] + } + \ No newline at end of file diff --git a/lib/node_modules/@stdlib/iter/do-while-each/test/test.js b/lib/node_modules/@stdlib/iter/do-while-each/test/test.js new file mode 100644 index 000000000000..0d7e3fea31f2 --- /dev/null +++ b/lib/node_modules/@stdlib/iter/do-while-each/test/test.js @@ -0,0 +1,368 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var proxyquire = require( 'proxyquire' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var randu = require( '@stdlib/random/iter/randu' ); +var iteratorSymbol = require( '@stdlib/symbol/iterator' ); +var array2iterator = require( '@stdlib/array/to-iterator' ); +var noop = require( '@stdlib/utils/noop' ); +var iterDoWhileEach = require( './../lib' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.strictEqual( typeof iterDoWhileEach, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'the function throws an error if provided an iterator argument which is not an iterator protocol-compliant object', function test( t ) { + var values; + var i; + + values = [ + '5', + 5, + NaN, + true, + false, + null, + void 0, + {}, + [], + function noop() {} + ]; + + for ( i = 0; i < values.length; i++ ) { + t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] ); + } + t.end(); + + function badValue( value ) { + return function badValue() { + iterDoWhileEach( value, noop, noop ); + }; + } +}); + +tape( 'the function throws an error if provided a second argument which is not a function', function test( t ) { + var values; + var i; + + values = [ + '5', + 5, + NaN, + true, + false, + null, + void 0, + [], + {} + ]; + + for ( i = 0; i < values.length; i++ ) { + t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] ); + } + t.end(); + + function badValue( value ) { + return function badValue() { + iterDoWhileEach( randu(), value, noop ); + }; + } +}); + +tape( 'the function throws an error if provided a third argument which is not a function', function test( t ) { + var values; + var i; + + values = [ + '5', + 5, + NaN, + true, + false, + null, + void 0, + [], + {} + ]; + + for ( i = 0; i < values.length; i++ ) { + t.throws( badValue( values[i] ), TypeError, 'throws an error when provided '+values[i] ); + } + t.end(); + + function badValue( value ) { + return function badValue() { + iterDoWhileEach( randu(), noop, value ); + }; + } +}); + +tape( 'the function returns an iterator protocol-compliant object', function test( t ) { + var count; + var it; + var r; + var i; + + it = iterDoWhileEach( randu(), predicate, assert ); + t.equal( it.next.length, 0, 'has zero arity' ); + + count = 0; + i = 0; + do { + r = it.next(); + if ( typeof r.value !== 'undefined' ) { + t.equal( typeof r.value, 'number', 'returns a number' ); + } + t.equal( typeof r.done, 'boolean', 'returns a boolean' ); + if ( r.done ) { + count += 1; + } + i += 1; + } while ( r.done === false ); + t.equal( count, i+1, 'returns expected value' ); + t.end(); + + function assert( v, i ) { + count += 1; + t.equal( isnan( v ), false, 'is not NaN' ); + t.equal( isnan( i ), false, 'is not NaN' ); + } + + function predicate( v, i ) { + return ( v <= 0.5 && i >= 0 ); + } +}); + +tape( 'the function returns an iterator protocol-compliant object which invokes a function for each iterated value before returning the iterated value until either a `predicate` function returns `false` or the iterator has iterated over all values.', function test( t ) { + var expected; + var opts; + var rand; + var it; + var r; + var i; + + opts = { + 'iter': 10 + }; + rand = randu( opts ); + it = iterDoWhileEach( rand, predicate, assert ); + t.equal( it.next.length, 0, 'has zero arity' ); + + expected = []; + i = 0; + do { + r = it.next(); + if ( typeof r.value !== 'undefined' ) { + expected.push( [ r.value, i ] ); + t.equal( i, expected[ i ][ 1 ], 'provides expected value' ); + t.equal( r.value, expected[ i ][ 0 ], 'returns expected value' ); + } + t.equal( typeof r.done, 'boolean', 'returns a boolean' ); + i += 1; + } while ( r.done === false ); + t.equal( expected.length, i-1, 'has expected length' ); + + r = it.next(); + t.equal( r.value, void 0, 'returns expected value' ); + t.equal( r.done, true, 'returns expected value' ); + + t.end(); + + function assert( v, i ) { + t.equal( isnan( v ), false, 'is not NaN' ); + t.equal( isnan( i ), false, 'is not NaN' ); + } + + function predicate( v, i ) { + return ( v <= 0.75 && i >= 0 ); + } +}); + +tape( 'the returned iterator has a `return` method for closing an iterator (no argument)', function test( t ) { + var it; + var r; + + it = iterDoWhileEach( array2iterator( [ 1, 2, 3, 4 ] ), predicate, assert ); + + r = it.next(); + t.equal( typeof r.value, 'number', 'returns a number' ); + t.equal( r.done, false, 'returns expected value' ); + + r = it.next(); + t.equal( typeof r.value, 'number', 'returns a number' ); + t.equal( r.done, false, 'returns expected value' ); + + r = it.return(); + t.equal( r.value, void 0, 'returns expected value' ); + t.equal( r.done, true, 'returns expected value' ); + + r = it.next(); + t.equal( r.value, void 0, 'returns expected value' ); + t.equal( r.done, true, 'returns expected value' ); + + t.end(); + + function assert( v, i ) { + t.equal( isnan( v ), false, 'is not NaN' ); + t.equal( isnan( i ), false, 'is not NaN' ); + } + + function predicate( v, i ) { + return ( v < 4 && i >= 0 ); + } +}); + +tape( 'the returned iterator has a `return` method for closing an iterator (argument)', function test( t ) { + var it; + var r; + + it = iterDoWhileEach( array2iterator( [ 1, 2, 3, 4 ] ), predicate, assert ); + + r = it.next(); + t.equal( typeof r.value, 'number', 'returns a number' ); + t.equal( r.done, false, 'returns expected value' ); + + r = it.next(); + t.equal( typeof r.value, 'number', 'returns a number' ); + t.equal( r.done, false, 'returns expected value' ); + + r = it.return( 'finished' ); + t.equal( r.value, 'finished', 'returns expected value' ); + t.equal( r.done, true, 'returns expected value' ); + + r = it.next(); + t.equal( r.value, void 0, 'returns expected value' ); + t.equal( r.done, true, 'returns expected value' ); + + t.end(); + + function assert( v, i ) { + t.equal( isnan( v ), false, 'is not NaN' ); + t.equal( isnan( i ), false, 'is not NaN' ); + } + + function predicate( v, i ) { + return ( v < 4 && i >= 0 ); + } +}); + +tape( 'if an environment supports `Symbol.iterator` and the provided iterator is iterable, the returned iterator is iterable', function test( t ) { + var iterDoWhileEach; + var opts; + var rand; + var it1; + var it2; + var i; + + iterDoWhileEach = proxyquire( './../lib/main.js', { + '@stdlib/symbol/iterator': '__ITERATOR_SYMBOL__' + }); + + opts = { + 'seed': 12345 + }; + rand = randu( opts ); + rand[ '__ITERATOR_SYMBOL__' ] = factory; + + it1 = iterDoWhileEach( rand, predicate, assert ); + t.equal( typeof it1[ '__ITERATOR_SYMBOL__' ], 'function', 'has method' ); + t.equal( it1[ '__ITERATOR_SYMBOL__' ].length, 0, 'has zero arity' ); + + it2 = it1[ '__ITERATOR_SYMBOL__' ](); + t.equal( typeof it2, 'object', 'returns an object' ); + t.equal( typeof it2.next, 'function', 'has method' ); + t.equal( typeof it2.return, 'function', 'has method' ); + + for ( i = 0; i < 100; i++ ) { + t.equal( it2.next().value, it1.next().value, 'returns expected value' ); + } + t.end(); + + function factory() { + return randu( opts ); + } + + function assert( v, i ) { + t.equal( isnan( v ), false, 'is not NaN' ); + t.equal( isnan( i ), false, 'is not NaN' ); + } + + function predicate( v, i ) { + return ( !( isnan( v ) || isnan( i ) ) ); + } +}); + +tape( 'if an environment does not support `Symbol.iterator`, the returned iterator is not "iterable"', function test( t ) { + var iterDoWhileEach; + var it; + + iterDoWhileEach = proxyquire( './../lib/main.js', { + '@stdlib/symbol/iterator': false + }); + + it = iterDoWhileEach( randu(), predicate, assert ); + t.equal( it[ iteratorSymbol ], void 0, 'does not have property' ); + + t.end(); + + function assert( v, i ) { + t.equal( isnan( v ), false, 'is not NaN' ); + t.equal( isnan( i ), false, 'is not NaN' ); + } + + function predicate( v, i ) { + return ( !( isnan( v ) || isnan( i ) ) ); + } +}); + +tape( 'if a provided iterator is not iterable, the returned iterator is not iterable', function test( t ) { + var iterDoWhileEach; + var rand; + var it; + + iterDoWhileEach = proxyquire( './../lib/main.js', { + '@stdlib/symbol/iterator': '__ITERATOR_SYMBOL__' + }); + + rand = randu(); + rand[ '__ITERATOR_SYMBOL__' ] = null; + + it = iterDoWhileEach( rand, predicate, assert ); + t.equal( it[ iteratorSymbol ], void 0, 'does not have property' ); + t.end(); + + function assert( v, i ) { + t.equal( isnan( v ), false, 'is not NaN' ); + t.equal( isnan( i ), false, 'is not NaN' ); + } + + function predicate( v, i ) { + return ( !( isnan( v ) || isnan( i ) ) ); + } +}); From c3e8968f43587742ee6e76290da828637566f962 Mon Sep 17 00:00:00 2001 From: praneki Date: Tue, 5 Mar 2024 14:53:16 +0530 Subject: [PATCH 02/11] feat: added @stdlib/iter/do-while-each --- lib/node_modules/@stdlib/iter/do-while-each/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/node_modules/@stdlib/iter/do-while-each/README.md b/lib/node_modules/@stdlib/iter/do-while-each/README.md index 6f3638536eea..64b3163fb9a2 100644 --- a/lib/node_modules/@stdlib/iter/do-while-each/README.md +++ b/lib/node_modules/@stdlib/iter/do-while-each/README.md @@ -83,6 +83,7 @@ Both the `predicate` function and the function to invoke for each iterated value - **index**: iteration index (zero-based) ```javascript +var iterDoWhileEach = require( '@stdlib/iter/do-while-each' ); var array2iterator = require( '@stdlib/array/to-iterator' ); function predicate( v ) { @@ -115,6 +116,7 @@ provide a `thisArg`. ```javascript +var iterDoWhileEach = require( '@stdlib/iter/do-while-each' ); var array2iterator = require( '@stdlib/array/to-iterator' ); function assert( v ) { From 1cc399b24f96c23efa23f0a0165d23313f21f756 Mon Sep 17 00:00:00 2001 From: praneki Date: Tue, 5 Mar 2024 14:55:57 +0530 Subject: [PATCH 03/11] feat: added @stdlib/iter/do-while-each --- lib/node_modules/@stdlib/iter/do-while-each/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/node_modules/@stdlib/iter/do-while-each/README.md b/lib/node_modules/@stdlib/iter/do-while-each/README.md index 64b3163fb9a2..165e855b872a 100644 --- a/lib/node_modules/@stdlib/iter/do-while-each/README.md +++ b/lib/node_modules/@stdlib/iter/do-while-each/README.md @@ -45,6 +45,7 @@ var iterDoWhileEach = require( '@stdlib/iter/do-while-each' ); Returns an iterator which invokes a function for each iterated value before returning the iterated value until either a predicate function returns false or the iterator has iterated over all values. The condition is evaluated after executing the provided function (fcn). ```javascript +var iterDoWhileEach = require( '@stdlib/iter/do-while-each' ); var array2iterator = require( '@stdlib/array/to-iterator' ); function predicate( v ) { From 80ce4ffc4a6728e8fb1a0d339fd159bb1662a58f Mon Sep 17 00:00:00 2001 From: praneki Date: Tue, 5 Mar 2024 15:12:48 +0530 Subject: [PATCH 04/11] feat: added @stdlib/iter/do-while-each --- lib/node_modules/@stdlib/iter/do-while-each/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/iter/do-while-each/README.md b/lib/node_modules/@stdlib/iter/do-while-each/README.md index 165e855b872a..e778125972ca 100644 --- a/lib/node_modules/@stdlib/iter/do-while-each/README.md +++ b/lib/node_modules/@stdlib/iter/do-while-each/README.md @@ -92,8 +92,8 @@ function predicate( v ) { } function assert( v, i ) { - if ( i > 1 ) { - throw new Error( 'unexpected error' ); + if ( v !== v ) { + throw new Error( 'should not be NaN' ); } } From 7e8a9643d2633770220d78dc90e4f0277ee28b85 Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Thu, 7 Mar 2024 21:01:26 -0500 Subject: [PATCH 05/11] Apply suggestions from code review Signed-off-by: Philipp Burckhardt --- lib/node_modules/@stdlib/iter/do-while-each/README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/lib/node_modules/@stdlib/iter/do-while-each/README.md b/lib/node_modules/@stdlib/iter/do-while-each/README.md index e778125972ca..039c9e44a82f 100644 --- a/lib/node_modules/@stdlib/iter/do-while-each/README.md +++ b/lib/node_modules/@stdlib/iter/do-while-each/README.md @@ -111,8 +111,7 @@ r = it.next().value; // ... ``` -To set the execution context for `fcn`, -provide a `thisArg`. +To set the execution context for `fcn`, provide a `thisArg`. @@ -135,8 +134,7 @@ var ctx = { 'count': 0 }; -var it = -iterDoWhileEach( array2iterator( [ 1, 2, 3 ] ), predicate, assert, ctx ); +var it = iterDoWhileEach( array2iterator( [ 1, 2, 3 ] ), predicate, assert, ctx ); // returns var r = it.next().value; @@ -146,8 +144,7 @@ r = it.next().value; // returns 2 r = it.next().value; - -// undefined +// returns undefined var count = ctx.count; // returns 3 From 24bb52615202ef950c7810cc7ba9cfb2a77dbb1a Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Thu, 7 Mar 2024 21:01:38 -0500 Subject: [PATCH 06/11] Update lib/node_modules/@stdlib/iter/do-while-each/README.md Signed-off-by: Philipp Burckhardt --- lib/node_modules/@stdlib/iter/do-while-each/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/iter/do-while-each/README.md b/lib/node_modules/@stdlib/iter/do-while-each/README.md index 039c9e44a82f..ec4002cfcaf6 100644 --- a/lib/node_modules/@stdlib/iter/do-while-each/README.md +++ b/lib/node_modules/@stdlib/iter/do-while-each/README.md @@ -20,7 +20,7 @@ limitations under the License. # iterDoWhileEach -> Create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value.The condition is evaluated **after** executing the provided function; thus, `fcn` **always** executes at least once. +> Create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value. From b9fda9acf4d1752918e7a512dfdfc646d52058af Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Thu, 7 Mar 2024 21:01:43 -0500 Subject: [PATCH 07/11] Update lib/node_modules/@stdlib/iter/do-while-each/package.json Signed-off-by: Philipp Burckhardt --- lib/node_modules/@stdlib/iter/do-while-each/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/iter/do-while-each/package.json b/lib/node_modules/@stdlib/iter/do-while-each/package.json index 4dbc4d4b523e..d64bdeee596f 100644 --- a/lib/node_modules/@stdlib/iter/do-while-each/package.json +++ b/lib/node_modules/@stdlib/iter/do-while-each/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/iter/do-while-each", "version": "0.0.0", - "description": "Create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value.The condition is evaluated after executing the provided function; thus, fcn always executes at least once.", + "description": "Create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value.", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors", From c958a699c63a1eb71dc266d18e963a6a4bef7965 Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Thu, 7 Mar 2024 21:05:20 -0500 Subject: [PATCH 08/11] Update lib/node_modules/@stdlib/iter/do-while-each/README.md Signed-off-by: Philipp Burckhardt --- lib/node_modules/@stdlib/iter/do-while-each/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/iter/do-while-each/README.md b/lib/node_modules/@stdlib/iter/do-while-each/README.md index ec4002cfcaf6..92204bc4313b 100644 --- a/lib/node_modules/@stdlib/iter/do-while-each/README.md +++ b/lib/node_modules/@stdlib/iter/do-while-each/README.md @@ -134,7 +134,8 @@ var ctx = { 'count': 0 }; -var it = iterDoWhileEach( array2iterator( [ 1, 2, 3 ] ), predicate, assert, ctx ); +var iterator = array2iterator( [ 1, 2, 3 ] ); +var it = iterDoWhileEach( iterator, predicate, assert, ctx ); // returns var r = it.next().value; From 7a4c63e0035c743c2c0bffa501a347a7085444f4 Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Thu, 7 Mar 2024 21:06:13 -0500 Subject: [PATCH 09/11] Update lib/node_modules/@stdlib/iter/do-while-each/README.md Signed-off-by: Philipp Burckhardt --- lib/node_modules/@stdlib/iter/do-while-each/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/iter/do-while-each/README.md b/lib/node_modules/@stdlib/iter/do-while-each/README.md index 92204bc4313b..276415a25546 100644 --- a/lib/node_modules/@stdlib/iter/do-while-each/README.md +++ b/lib/node_modules/@stdlib/iter/do-while-each/README.md @@ -107,7 +107,7 @@ r = it.next().value; // returns 2 r = it.next().value; -// undefined +// returns undefined // ... ``` From 568f85f293a402a172a033f61457d7544409e806 Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Thu, 7 Mar 2024 21:09:25 -0500 Subject: [PATCH 10/11] Update lib/node_modules/@stdlib/iter/do-while-each/README.md Signed-off-by: Philipp Burckhardt --- lib/node_modules/@stdlib/iter/do-while-each/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/iter/do-while-each/README.md b/lib/node_modules/@stdlib/iter/do-while-each/README.md index 276415a25546..6fdef20c1353 100644 --- a/lib/node_modules/@stdlib/iter/do-while-each/README.md +++ b/lib/node_modules/@stdlib/iter/do-while-each/README.md @@ -68,7 +68,7 @@ r = it.next().value; // returns 2 r = it.next().value; -// undefined +// returns undefined // ... ``` From 201931415920993f8a4c17a4484329c100a03d8e Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Thu, 7 Mar 2024 21:10:15 -0500 Subject: [PATCH 11/11] Update lib/node_modules/@stdlib/iter/do-while-each/lib/index.js Signed-off-by: Philipp Burckhardt --- lib/node_modules/@stdlib/iter/do-while-each/lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/iter/do-while-each/lib/index.js b/lib/node_modules/@stdlib/iter/do-while-each/lib/index.js index 1f0655990afd..0ae790ecc416 100644 --- a/lib/node_modules/@stdlib/iter/do-while-each/lib/index.js +++ b/lib/node_modules/@stdlib/iter/do-while-each/lib/index.js @@ -47,7 +47,7 @@ * // returns 2 * * r = it.next().value; -* // returns 3 +* // returns undefined * * // ... */