Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/node_modules/@stdlib/iter/any/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ var bool = iterAny( array2iterator( [] ) );

<section class="notes">

## Notes

- The function immediately returns upon encountering a truthy value.

</section>

<!-- /.notes -->
Expand Down
4 changes: 4 additions & 0 deletions lib/node_modules/@stdlib/iter/every/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ var bool = iterEvery( array2iterator( [] ) );

<section class="notes">

## Notes

- The function immediately returns upon encountering a falsy value.

</section>

<!-- /.notes -->
Expand Down
4 changes: 4 additions & 0 deletions lib/node_modules/@stdlib/iter/none/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ var bool = iterNone( array2iterator( [] ) );

<section class="notes">

## Notes

- The function immediately returns upon encountering a truthy value.

</section>

<!-- /.notes -->
Expand Down
4 changes: 4 additions & 0 deletions lib/node_modules/@stdlib/iter/some/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ var bool = iterSome( array2iterator( [] ), 1 );

<section class="notes">

## Notes

- The function immediately returns upon finding `n` truthy values.

</section>

<!-- /.notes -->
Expand Down