Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Oct 2, 2023
1 parent f83baf8 commit d159727
Show file tree
Hide file tree
Showing 17 changed files with 1,095 additions and 15 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/index.js.map

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions iter/columns/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ arr = ndarray2array( v );
// returns [ 10, 3 ]
```

The returned iterator protocol-compliant object has the following properties:
The returned [iterator][mdn-iterator-protocol] 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.
- **next**: function which returns an [iterator][mdn-iterator-protocol] 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][mdn-iterator-protocol] is finished.
- **return**: function which closes an [iterator][mdn-iterator-protocol] and returns a single (optional) argument in an [iterator][mdn-iterator-protocol] protocol-compliant object.

</section>

Expand Down Expand Up @@ -183,6 +183,8 @@ while ( true ) {

<section class="links">

[mdn-iterator-protocol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol

[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/ndarray/tree/main/ctor

[@stdlib/ndarray/slice]: https://github.com/stdlib-js/ndarray/tree/main/slice
Expand Down
4 changes: 2 additions & 2 deletions iter/columns/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ interface Options {
* @returns iterator
*
* @example
* var array = require( '@stdlib/ndarray/array' );
* var ndarray2array = require( '@stdlib/ndarray/to-array' );
* var array = require( `@stdlib/ndarray/array` );
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
*
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ], {
* 'dtype': 'float64'
Expand Down
9 changes: 9 additions & 0 deletions iter/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@ setReadOnly( ns, 'nditerColumns', require( './../../iter/columns' ) );
*/
setReadOnly( ns, 'nditerRows', require( './../../iter/rows' ) );

/**
* @name nditer2arrayEach
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/ndarray/iter/to-array-each}
*/
setReadOnly( ns, 'nditer2arrayEach', require( './../../iter/to-array-each' ) );


// EXPORTS //

Expand Down
8 changes: 5 additions & 3 deletions iter/rows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ arr = ndarray2array( v );
// returns [ 10, 2 ]
```

The returned iterator protocol-compliant object has the following properties:
The returned [iterator][mdn-iterator-protocol] 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.
- **next**: function which returns an [iterator][mdn-iterator-protocol] 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][mdn-iterator-protocol] is finished.
- **return**: function which closes an [iterator][mdn-iterator-protocol] and returns a single (optional) argument in an [iterator][mdn-iterator-protocol] protocol-compliant object.

</section>

Expand Down Expand Up @@ -183,6 +183,8 @@ while ( true ) {

<section class="links">

[mdn-iterator-protocol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol

[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/ndarray/tree/main/ctor

[@stdlib/ndarray/slice]: https://github.com/stdlib-js/ndarray/tree/main/slice
Expand Down
4 changes: 2 additions & 2 deletions iter/rows/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ interface Options {
* @returns iterator
*
* @example
* var array = require( '@stdlib/ndarray/array' );
* var ndarray2array = require( '@stdlib/ndarray/to-array' );
* var array = require( `@stdlib/ndarray/array` );
* var ndarray2array = require( `@stdlib/ndarray/to-array` );
*
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ], {
* 'dtype': 'float64'
Expand Down
154 changes: 154 additions & 0 deletions iter/to-array-each/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,154 @@
<!--
@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.
-->

# nditer2arrayEach

> Create an iterator which [converts][@stdlib/ndarray/to-array] each iterated [`ndarray`][@stdlib/ndarray/ctor] to a generic array.
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->

<section class="intro">

</section>

<!-- /.intro -->

<!-- Package usage documentation. -->

<section class="usage">

## Usage

```javascript
var nditer2arrayEach = require( '@stdlib/ndarray/iter/to-array-each' );
```

#### nditer2arrayEach( iterator )

Returns an iterator which [converts][@stdlib/ndarray/to-array] each iterated [`ndarray`][@stdlib/ndarray/ctor] to a generic array (which may include nested arrays).

```javascript
var array = require( '@stdlib/ndarray/array' );
var nditerRows = require( '@stdlib/ndarray/iter/rows' );

var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ] );
// returns <ndarray>

var iter = nditer2arrayEach( nditerRows( x ) );

var v = iter.next().value;
// returns [ 1, 2 ]

v = iter.next().value;
// returns [ 3, 4 ]

v = iter.next().value;
// returns [ 5, 6 ]

// ...
```

The returned [iterator][mdn-iterator-protocol] protocol-compliant object has the following properties:

- **next**: function which returns an [iterator][mdn-iterator-protocol] 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][mdn-iterator-protocol] is finished.
- **return**: function which closes an [iterator][mdn-iterator-protocol] and returns a single (optional) argument in an [iterator][mdn-iterator-protocol] protocol-compliant object.

</section>

<!-- /.usage -->

<!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="notes">

## Notes

- If an environment supports `Symbol.iterator` **and** a provided [iterator][mdn-iterator-protocol] is iterable, the returned [iterator][mdn-iterator-protocol] is iterable.

</section>

<!-- /.notes -->

<!-- Package usage examples. -->

<section class="examples">

## Examples

<!-- eslint no-undef: "error" -->

```javascript
var array = require( '@stdlib/ndarray/array' );
var zeroTo = require( '@stdlib/array/base/zero-to' );
var nditerRows = require( '@stdlib/ndarray/iter/rows' );
var nditer2arrayEach = require( '@stdlib/ndarray/iter/to-array-each' );

// Define an input array:
var x = array( zeroTo( 27 ), {
'shape': [ 3, 3, 3 ]
});

// Create an iterator for iterating over rows and converting to generic arrays:
var it = nditer2arrayEach( nditerRows( x ) );

// Perform manual iteration...
var v;
while ( true ) {
v = it.next();
if ( v.done ) {
break;
}
console.log( v.value );
}
```

</section>

<!-- /.examples -->

<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="references">

</section>

<!-- /.references -->

<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->

<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="links">

[mdn-iterator-protocol]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols#The_iterator_protocol

[@stdlib/ndarray/ctor]: https://github.com/stdlib-js/ndarray/tree/main/ctor

[@stdlib/ndarray/to-array]: https://github.com/stdlib-js/ndarray/tree/main/to-array

</section>

<!-- /.links -->
86 changes: 86 additions & 0 deletions iter/to-array-each/benchmark/benchmark.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
/**
* @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';

// MODULES //

var bench = require( '@stdlib/bench' );
var isIteratorLike = require( '@stdlib/assert/is-iterator-like' );
var isArray = require( '@stdlib/assert/is-array' );
var array = require( './../../../array' );
var nditerRows = require( './../../../iter/rows' );
var pkg = require( './../package.json' ).name;
var nditer2arrayEach = require( './../lib' );


// MAIN //

bench( pkg, function benchmark( b ) {
var iter;
var x;
var i;

x = nditerRows( array( [ [ 1, 2, 3, 4 ] ] ) );

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
iter = nditer2arrayEach( x );
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();
});

bench( pkg+'::iteration', function benchmark( b ) {
var xbuf;
var iter;
var x;
var z;
var i;

xbuf = [];
xbuf.length = b.iterations + 1;
x = array( xbuf, {
'shape': [ xbuf.length, 1 ],
'dtype': 'generic',
'copy': false
});

iter = nditer2arrayEach( nditerRows( x ) );

b.tic();
for ( i = 0; i < b.iterations; i++ ) {
z = iter.next().value;
if ( typeof z !== 'object' ) {
b.fail( 'should return an array' );
}
}
b.toc();
if ( !isArray( z ) ) {
b.fail( 'should return an array' );
}
b.pass( 'benchmark finished' );
b.end();
});
37 changes: 37 additions & 0 deletions iter/to-array-each/docs/repl.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

{{alias}}( iterator )
Returns an iterator which converts each iterated ndarray to a generic array.

If an environment supports Symbol.iterator and a provided iterator is
iterable, the returned iterator is iterable.

Parameters
----------
iterator: Object
Input iterator.

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
--------
> var x = {{alias:@stdlib/ndarray/array}}( [ [ 1, 2 ], [ 3, 4 ] ] );
> var it = {{alias}}( {{alias:@stdlib/ndarray/iter/rows}}( x ) );
> var v = it.next().value
[ 1, 2 ]
> v = it.next().value
[ 3, 4 ]

See Also
--------

Loading

0 comments on commit d159727

Please sign in to comment.