-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
663f9d7
commit dd47772
Showing
14 changed files
with
1,975 additions
and
6 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,7 @@ | |
"iterate", | ||
"iteration", | ||
"iter", | ||
"subscripts" | ||
"subscripts", | ||
"ndindex" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
<!-- | ||
@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. | ||
--> | ||
|
||
# nditerValues | ||
|
||
> Create an iterator which returns individual elements from a provided [`ndarray`][@stdlib/ndarray/ctor]. | ||
<!-- 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 nditerValues = require( '@stdlib/ndarray/iter/values' ); | ||
``` | ||
|
||
#### nditerValues( x\[, options] ) | ||
|
||
Returns an iterator which returns individual elements from a provided [`ndarray`][@stdlib/ndarray/ctor]. | ||
|
||
```javascript | ||
var array = require( '@stdlib/ndarray/array' ); | ||
|
||
var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ] ); | ||
// returns <ndarray> | ||
|
||
var iter = nditerValues( x ); | ||
|
||
var v = iter.next().value; | ||
// returns 1 | ||
|
||
v = iter.next().value; | ||
// returns 2 | ||
|
||
v = iter.next().value; | ||
// returns 3 | ||
|
||
// ... | ||
``` | ||
|
||
The function accepts the following `options`: | ||
|
||
- **order**: index iteration order. By default, the returned [iterator][mdn-iterator-protocol] returns values according to the layout order of the provided array. Accordingly, for row-major input arrays, the last dimension indices increment fastest. For column-major input arrays, the first dimension indices increment fastest. To override the inferred order and ensure that indices increment in a specific manor, regardless of the input array's layout order, explicitly set the iteration order. Note, however, that iterating according to an order which does not match that of the input array may, in some circumstances, result in performance degradation due to cache misses. Must be either `'row-major'` or `'column-major'`. | ||
|
||
By default, the iterator iterates according to the layout order of the input [`ndarray`][@stdlib/ndarray/ctor]. To iterate according to a specified order, set the `order` option. | ||
|
||
```javascript | ||
var array = require( '@stdlib/ndarray/array' ); | ||
|
||
var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ], { | ||
'order': 'row-major' | ||
}); | ||
// returns <ndarray> | ||
|
||
var iter = nditerValues( x, { | ||
'order': 'column-major' | ||
}); | ||
|
||
var v = iter.next().value; | ||
// returns 1 | ||
|
||
v = iter.next().value; | ||
// returns 5 | ||
|
||
v = iter.next().value; | ||
// returns 3 | ||
|
||
// ... | ||
``` | ||
|
||
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`, the returned iterator is iterable. | ||
- A returned iterator does **not** copy a provided [`ndarray`][@stdlib/ndarray/ctor]. To ensure iterable reproducibility, copy the input [`ndarray`][@stdlib/ndarray/ctor] **before** creating an iterator. Otherwise, any changes to the contents of input [`ndarray`][@stdlib/ndarray/ctor] will be reflected in the returned iterator. | ||
- In environments supporting `Symbol.iterator`, the function **explicitly** does **not** invoke an ndarray's `@@iterator` method, regardless of whether this method is defined. | ||
|
||
</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 nditerValues = require( '@stdlib/ndarray/iter/values' ); | ||
|
||
// Define an input array: | ||
var x = array( zeroTo( 27 ), { | ||
'shape': [ 3, 3, 3 ] | ||
}); | ||
|
||
// Create an iterator for returning individual elements: | ||
var it = nditerValues( 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 | ||
|
||
</section> | ||
|
||
<!-- /.links --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/** | ||
* @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 isNumber = require( '@stdlib/assert/is-number' ).isPrimitive; | ||
var array = require( './../../../array' ); | ||
var zeros = require( './../../../zeros' ); | ||
var pkg = require( './../package.json' ).name; | ||
var nditerValues = require( './../lib' ); | ||
|
||
|
||
// MAIN // | ||
|
||
bench( pkg, function benchmark( b ) { | ||
var iter; | ||
var x; | ||
var i; | ||
|
||
x = array( [ [ 1, 2, 3, 4 ] ] ); | ||
|
||
b.tic(); | ||
for ( i = 0; i < b.iterations; i++ ) { | ||
iter = nditerValues( 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 iter; | ||
var x; | ||
var z; | ||
var i; | ||
|
||
x = zeros( [ b.iterations+1, 1 ], { | ||
'dtype': 'generic' | ||
}); | ||
|
||
iter = nditerValues( x ); | ||
|
||
b.tic(); | ||
for ( i = 0; i < b.iterations; i++ ) { | ||
z = iter.next().value; | ||
if ( z !== z ) { | ||
b.fail( 'should not return NaN' ); | ||
} | ||
} | ||
b.toc(); | ||
if ( !isNumber( z ) || z !== z ) { | ||
b.fail( 'should not return NaN' ); | ||
} | ||
b.pass( 'benchmark finished' ); | ||
b.end(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
|
||
{{alias}}( x[, options] ) | ||
Returns an iterator which returns individual elements from a provided | ||
ndarray. | ||
|
||
If an environment supports Symbol.iterator, the returned iterator is | ||
iterable. | ||
|
||
If an environment supports Symbol.iterator, the function explicitly does not | ||
invoke an ndarray's `@@iterator` method, regardless of whether this method | ||
is defined. | ||
|
||
Parameters | ||
---------- | ||
x: ndarray | ||
Input array. | ||
|
||
options: Object (optional) | ||
Options. | ||
|
||
options.order: string (optional) | ||
Index iteration order. By default, the returned iterator returns values | ||
according to the layout order of the provided array. Accordingly, for | ||
row-major input arrays, the last dimension indices increment fastest. | ||
For column-major input arrays, the first dimension indices increment | ||
fastest. To override the inferred order and ensure that indices | ||
increment in a specific manor, regardless of the input array's layout | ||
order, explicitly set the iteration order. Note, however, that iterating | ||
according to an order which does not match that of the input array may, | ||
in some circumstances, result in performance degradation due to cache | ||
misses. Must be either 'row-major' or 'column-major'. | ||
|
||
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}}( x ); | ||
> var v = it.next().value | ||
1 | ||
> v = it.next().value | ||
2 | ||
|
||
See Also | ||
-------- | ||
|
Oops, something went wrong.