Skip to content

Commit e4c23ea

Browse files
committed
feat(46): add jsDoc namespace string
1 parent b299d7f commit e4c23ea

File tree

271 files changed

+2250
-120
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

271 files changed

+2250
-120
lines changed

docs/public/libs/v1/generator/asyncChunk.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* The last chunk may be smaller than the size.
99
* The input iterator is not mutated.
1010
*
11-
* @example
1211
* ```ts
1312
* const input = [1, 2, 3, 4];
1413
*

docs/public/libs/v1/generator/asyncFilter.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ interface AsyncGeneratorFilterParams {
1313
* The predicate receives `(item, { index })`.
1414
* The input iterator is not mutated.
1515
*
16-
* @example
1716
* ```ts
1817
* const ids = [201, 202, 203, 204];
1918
*

docs/public/libs/v1/generator/asyncLoop.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { type LoopOutputExistResult, type LoopOutputNextResult, type GeneratorLo
88
* The loop receives `{ count, previousOutput, next, exit }`.
99
* The generator ends when `exit` is returned.
1010
*
11-
* @example
1211
* ```ts
1312
* const limit = 3;
1413
*

docs/public/libs/v1/generator/asyncMap.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ interface AsyncGeneratorMapParams {
1111
* The function receives `(item, { index })`.
1212
* The input iterator is not mutated.
1313
*
14-
* @example
1514
* ```ts
1615
* const ids = [1, 2, 3];
1716
*

docs/public/libs/v1/generator/asyncReduce.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { type IsEqual, type MaybePromise } from "../common";
1010
* The function receives `{ element, index, lastValue, next, exit, nextWithObject }`.
1111
* The input iterator is not mutated.
1212
*
13-
* @example
1413
* ```ts
1514
* const values = [10, 20, 30];
1615
*

docs/public/libs/v1/generator/chunk.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
* The last chunk may be smaller than the size.
99
* The input iterator is not mutated.
1010
*
11-
* @example
1211
* ```ts
1312
* const input = G.loop(
1413
* ({ count, next, exit }: G.GeneratorLoopParams<number>) => N.greater(count, 7)

docs/public/libs/v1/generator/execute.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { type EscapeVoid } from "../common";
66
*
77
* This is useful for running generators with side effects.
88
*
9-
* @example
109
* ```ts
1110
* const source = [5, 10, 15, 20];
1211
*

docs/public/libs/v1/generator/filter.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ interface GeneratorFilterParams {
1313
* The predicate receives `(item, { index })`.
1414
* The input iterator is not mutated.
1515
*
16-
* @example
1716
* ```ts
1817
* const values = [9, 12, 15, 18, 21];
1918
* const threshold = 15;

docs/public/libs/v1/generator/loop.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ export interface GeneratorLoopParams<GenericRawNextOutput extends any> {
1919
* The loop receives `{ count, previousOutput, next, exit }`.
2020
* The generator ends when `exit` is returned.
2121
*
22-
* @example
2322
* ```ts
2423
* const limit = 4;
2524
*

docs/public/libs/v1/generator/map.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ interface GeneratorMapParams {
1111
* The function receives `(item, { index })`.
1212
* The input iterator is not mutated.
1313
*
14-
* @example
1514
* ```ts
1615
* const values = [8, 12, 20];
1716
* const rate = 1.1;

0 commit comments

Comments
 (0)