Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Jul 13, 2024
1 parent b2e3e55 commit 221ec27
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/ops/async/wait-race.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ import {createOperation, throwOnSync} from '../../utils';
*
* @see
* - {@link wait}
* - {@link https://github.com/vitaly-t/iter-ops-extras/blob/main/src/map-wait.ts mapWait}
*
* @category Async-only
*/
Expand Down
1 change: 1 addition & 0 deletions src/ops/async/wait.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ import {createOperation, throwOnSync} from '../../utils';
*
* @see
* - {@link waitRace}
* - {@link https://github.com/vitaly-t/iter-ops-extras/blob/main/src/map-wait.ts mapWait}
*
* @category Async-only
*/
Expand Down
3 changes: 3 additions & 0 deletions src/ops/distinct.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ import {createOperation} from '../utils';
* ```
*
* @category Sync+Async
*
* @see
* - {@link https://github.com/vitaly-t/iter-ops-extras/blob/main/src/distinct-values.ts distinctValues}
*/
export function distinct<T, K>(
keySelector?: (value: T, index: number) => K
Expand Down
4 changes: 4 additions & 0 deletions src/ops/tap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ import {createOperation} from '../utils';
* ```
*
* @category Sync+Async
*
* @see
* - {@link https://github.com/vitaly-t/iter-ops-extras/blob/main/src/tap-log.ts tapLog}
* - {@link https://github.com/vitaly-t/iter-ops-extras/blob/main/src/tap-once.ts tapOnce}
*/
export function tap<T>(
cb: (value: T, index: number, state: IterationState) => void
Expand Down

0 comments on commit 221ec27

Please sign in to comment.