effect 2.0.0-next.1 → 2.0.0-next.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (95) hide show
  1. package/Codec.d.ts +56 -0
  2. package/Codec.d.ts.map +1 -0
  3. package/Codec.js +50 -0
  4. package/Codec.js.map +1 -0
  5. package/Debug.d.ts +11 -2
  6. package/Debug.d.ts.map +1 -1
  7. package/Debug.js +8 -2
  8. package/Debug.js.map +1 -1
  9. package/Differ.d.ts +59 -5
  10. package/Differ.d.ts.map +1 -1
  11. package/Differ.js +10 -10
  12. package/Differ.js.map +1 -1
  13. package/Fiber.d.ts +49 -4
  14. package/Fiber.d.ts.map +1 -1
  15. package/Fiber.js +8 -8
  16. package/Fiber.js.map +1 -1
  17. package/FiberRefs.d.ts +19 -1
  18. package/FiberRefs.d.ts.map +1 -1
  19. package/FiberRefs.js +2 -2
  20. package/FiberRefs.js.map +1 -1
  21. package/Logger.d.ts +31 -0
  22. package/Logger.d.ts.map +1 -0
  23. package/Logger.js +29 -0
  24. package/Logger.js.map +1 -0
  25. package/Metric.d.ts +99 -9
  26. package/Metric.d.ts.map +1 -1
  27. package/Metric.js +18 -18
  28. package/Metric.js.map +1 -1
  29. package/Optic.d.ts +185 -0
  30. package/Optic.d.ts.map +1 -0
  31. package/Optic.js +167 -0
  32. package/Optic.js.map +1 -0
  33. package/README.md +1 -1
  34. package/Ref.d.ts +29 -2
  35. package/Ref.d.ts.map +1 -1
  36. package/Ref.js +4 -4
  37. package/Ref.js.map +1 -1
  38. package/Schedule.d.ts +39 -3
  39. package/Schedule.d.ts.map +1 -1
  40. package/Schedule.js +6 -6
  41. package/Schedule.js.map +1 -1
  42. package/index.d.ts +513 -4
  43. package/index.d.ts.map +1 -1
  44. package/index.js +17 -9
  45. package/index.js.map +1 -1
  46. package/mjs/Codec.mjs +56 -0
  47. package/mjs/Codec.mjs.map +1 -0
  48. package/mjs/Debug.mjs +31 -0
  49. package/mjs/Debug.mjs.map +1 -0
  50. package/mjs/Differ.mjs +61 -0
  51. package/mjs/Differ.mjs.map +1 -0
  52. package/mjs/Fiber.mjs +51 -0
  53. package/mjs/Fiber.mjs.map +1 -0
  54. package/mjs/FiberRefs.mjs +21 -0
  55. package/mjs/FiberRefs.mjs.map +1 -0
  56. package/mjs/Logger.mjs +31 -0
  57. package/mjs/Logger.mjs.map +1 -0
  58. package/mjs/Metric.mjs +101 -0
  59. package/mjs/Metric.mjs.map +1 -0
  60. package/mjs/Optic.mjs +185 -0
  61. package/mjs/Optic.mjs.map +1 -0
  62. package/mjs/Ref.mjs +31 -0
  63. package/mjs/Ref.mjs.map +1 -0
  64. package/mjs/Schedule.mjs +41 -0
  65. package/mjs/Schedule.mjs.map +1 -0
  66. package/mjs/index.mjs +959 -0
  67. package/mjs/index.mjs.map +1 -0
  68. package/package.json +10 -8
  69. package/src/Codec.ts +59 -0
  70. package/src/Debug.ts +43 -0
  71. package/src/Differ.ts +64 -0
  72. package/src/Fiber.ts +54 -0
  73. package/src/FiberRefs.ts +24 -0
  74. package/src/Logger.ts +34 -0
  75. package/src/Metric.ts +104 -0
  76. package/src/Optic.ts +188 -0
  77. package/src/Ref.ts +34 -0
  78. package/src/Schedule.ts +44 -0
  79. package/src/index.ts +961 -0
  80. package/_mjs/Debug.mjs +0 -22
  81. package/_mjs/Debug.mjs.map +0 -1
  82. package/_mjs/Differ.mjs +0 -12
  83. package/_mjs/Differ.mjs.map +0 -1
  84. package/_mjs/Fiber.mjs +0 -10
  85. package/_mjs/Fiber.mjs.map +0 -1
  86. package/_mjs/FiberRefs.mjs +0 -4
  87. package/_mjs/FiberRefs.mjs.map +0 -1
  88. package/_mjs/Metric.mjs +0 -20
  89. package/_mjs/Metric.mjs.map +0 -1
  90. package/_mjs/Ref.mjs +0 -6
  91. package/_mjs/Ref.mjs.map +0 -1
  92. package/_mjs/Schedule.mjs +0 -8
  93. package/_mjs/Schedule.mjs.map +0 -1
  94. package/_mjs/index.mjs +0 -450
  95. package/_mjs/index.mjs.map +0 -1
package/index.d.ts CHANGED
@@ -1,5 +1,29 @@
1
1
  /**
2
2
  * @since 2.0.0
3
+ *
4
+ * The Effect Ecosystem Package
5
+ *
6
+ * To be used as a prelude when developing apps, it includes
7
+ * a selected portion of ecosystem packages that have been identified
8
+ * as the most common needed in most of the apps regardless
9
+ * of the runtime (Node, Browser, Deno, Bun, etc).
10
+ *
11
+ * The user is expected to further install and use additional libraries
12
+ * such as "@effect/node" to integrate with specific runtimes and / or
13
+ * frameworks such as "@effect/express".
14
+ *
15
+ * Includes modules from:
16
+ *
17
+ * - "@fp-ts/core"
18
+ * - "@fp-ts/data"
19
+ * - "@fp-ts/schema" (tbd)
20
+ * - "@fp-ts/optic"
21
+ * - "@effect/io"
22
+ * - "@effect/stm" (tbd)
23
+ * - "@effect/stream" (tbd)
24
+ *
25
+ * Note: don't use this package when developing libraries, prefer targeting
26
+ * individual dependencies.
3
27
  */
4
28
  import * as Cached from "@effect/io/Cached";
5
29
  import * as Cause from "@effect/io/Cause";
@@ -12,7 +36,6 @@ import * as Exit from "@effect/io/Exit";
12
36
  import * as FiberRef from "@effect/io/FiberRef";
13
37
  import * as Hub from "@effect/io/Hub";
14
38
  import * as Layer from "@effect/io/Layer";
15
- import * as Logger from "@effect/io/Logger";
16
39
  import * as Queue from "@effect/io/Queue";
17
40
  import * as Random from "@effect/io/Random";
18
41
  import * as Reloadable from "@effect/io/Reloadable";
@@ -26,11 +49,9 @@ import * as Applicative from "@fp-ts/core/typeclass/Applicative";
26
49
  import * as Bicovariant from "@fp-ts/core/typeclass/Bicovariant";
27
50
  import * as Bounded from "@fp-ts/core/typeclass/Bounded";
28
51
  import * as Chainable from "@fp-ts/core/typeclass/Chainable";
29
- import * as Compactable from "@fp-ts/core/typeclass/Compactable";
30
52
  import * as Contravariant from "@fp-ts/core/typeclass/Contravariant";
31
53
  import * as Coproduct from "@fp-ts/core/typeclass/Coproduct";
32
54
  import * as Covariant from "@fp-ts/core/typeclass/Covariant";
33
- import * as Filterable from "@fp-ts/core/typeclass/Filterable";
34
55
  import * as FlatMap from "@fp-ts/core/typeclass/FlatMap";
35
56
  import * as Foldable from "@fp-ts/core/typeclass/Foldable";
36
57
  import * as Invariant from "@fp-ts/core/typeclass/Invariant";
@@ -47,7 +68,6 @@ import * as SemiCoproduct from "@fp-ts/core/typeclass/SemiCoproduct";
47
68
  import * as Semigroup from "@fp-ts/core/typeclass/Semigroup";
48
69
  import * as SemiProduct from "@fp-ts/core/typeclass/SemiProduct";
49
70
  import * as Traversable from "@fp-ts/core/typeclass/Traversable";
50
- import * as TraversableFilterable from "@fp-ts/core/typeclass/TraversableFilterable";
51
71
  import * as Boolean from "@fp-ts/data/Boolean";
52
72
  import * as Chunk from "@fp-ts/data/Chunk";
53
73
  import * as Context from "@fp-ts/data/Context";
@@ -74,373 +94,862 @@ import * as Predicate from "@fp-ts/data/Predicate";
74
94
  import * as ImmutableQueue from "@fp-ts/data/Queue";
75
95
  import * as PCGRandom from "@fp-ts/data/Random";
76
96
  import * as ReadonlyArray from "@fp-ts/data/ReadonlyArray";
97
+ import * as RedBlackTree from "@fp-ts/data/RedBlackTree";
77
98
  import * as SortedMap from "@fp-ts/data/SortedMap";
78
99
  import * as SortedSet from "@fp-ts/data/SortedSet";
79
100
  import * as String from "@fp-ts/data/String";
101
+ import * as Compactable from "@fp-ts/data/typeclass/Compactable";
80
102
  import * as CovariantWithIndex from "@fp-ts/data/typeclass/CovariantWithIndex";
103
+ import * as Filterable from "@fp-ts/data/typeclass/Filterable";
81
104
  import * as FilterableWithIndex from "@fp-ts/data/typeclass/FilterableWithIndex";
105
+ import * as Gen from "@fp-ts/data/typeclass/Gen";
82
106
  import * as Seq from "@fp-ts/data/typeclass/Seq";
107
+ import * as TraversableFilterable from "@fp-ts/data/typeclass/TraversableFilterable";
108
+ import * as Codec from "effect/Codec";
83
109
  import * as Differ from "effect/Differ";
84
110
  import * as Fiber from "effect/Fiber";
85
111
  import * as FiberRefs from "effect/FiberRefs";
112
+ import * as Logger from "effect/Logger";
86
113
  import * as Metric from "effect/Metric";
114
+ import * as Optic from "effect/Optic";
87
115
  import * as Ref from "effect/Ref";
88
116
  import * as Schedule from "effect/Schedule";
89
117
  export {
90
118
  /**
91
119
  * @since 2.0.0
120
+ *
121
+ * ```md
122
+ * - Docs: https://fp-ts.github.io/data/modules/Function.ts.html#absurd
123
+ * - Module: "@fp-ts/data/Function"
124
+ * ```
92
125
  */
93
126
  absurd,
94
127
  /**
95
128
  * @since 2.0.0
129
+ *
130
+ * ```md
131
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Alternative.ts.html
132
+ * - Module: "@fp-ts/core/typeclass/Alternative"
133
+ * ```
96
134
  */
97
135
  Alternative,
98
136
  /**
99
137
  * @since 2.0.0
138
+ *
139
+ * ```md
140
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Applicative.ts.html
141
+ * - Module: "@fp-ts/core/typeclass/Applicative"
142
+ * ```
100
143
  */
101
144
  Applicative,
102
145
  /**
103
146
  * @since 2.0.0
147
+ *
148
+ * ```md
149
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Bicovariant.ts.html
150
+ * - Module: "@fp-ts/core/typeclass/Bicovariant"
151
+ * ```
104
152
  */
105
153
  Bicovariant,
106
154
  /**
107
155
  * @since 2.0.0
156
+ *
157
+ * ```md
158
+ * - Docs: https://fp-ts.github.io/data/modules/Boolean.ts.html
159
+ * - Module: "@fp-ts/data/Boolean"
160
+ * ```
108
161
  */
109
162
  Boolean,
110
163
  /**
111
164
  * @since 2.0.0
165
+ *
166
+ * ```md
167
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Bounded.ts.html
168
+ * - Module: "@fp-ts/core/typeclass/Bounded"
169
+ * ```
112
170
  */
113
171
  Bounded,
114
172
  /**
115
173
  * @since 2.0.0
174
+ *
175
+ * ```md
176
+ * - Docs: https://effect-ts.github.io/io/modules/Cached.ts.html
177
+ * - Module: "@effect/io/Cached"
178
+ * ```
116
179
  */
117
180
  Cached,
118
181
  /**
119
182
  * @since 2.0.0
183
+ *
184
+ * ```md
185
+ * - Docs: https://effect-ts.github.io/io/modules/Cause.ts.html
186
+ * - Module: "@effect/io/Cause"
187
+ * ```
120
188
  */
121
189
  Cause,
122
190
  /**
123
191
  * @since 2.0.0
192
+ *
193
+ * ```md
194
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Chainable.ts.html
195
+ * - Module: "@fp-ts/core/typeclass/Chainable"
196
+ * ```
124
197
  */
125
198
  Chainable,
126
199
  /**
127
200
  * @since 2.0.0
201
+ *
202
+ * ```md
203
+ * - Docs: https://fp-ts.github.io/data/modules/Chunk.ts.html
204
+ * - Module: "@fp-ts/data/Chunk"
205
+ * ```
128
206
  */
129
207
  Chunk,
130
208
  /**
131
209
  * @since 2.0.0
210
+ *
211
+ * ```md
212
+ * - Docs: https://effect-ts.github.io/io/modules/Clock.ts.html
213
+ * - Module: "@effect/io/Clock"
214
+ * ```
132
215
  */
133
216
  Clock,
134
217
  /**
135
218
  * @since 2.0.0
219
+ *
220
+ * ```md
221
+ * - Docs: https://fp-ts.github.io/schema/modules/Codec.ts.html
222
+ * - Module: "@fp-ts/schema/Codec"
223
+ * ```
224
+ */
225
+ Codec,
226
+ /**
227
+ * @since 2.0.0
228
+ *
229
+ * ```md
230
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Compactable.ts.html
231
+ * - Module: "@fp-ts/core/typeclass/Compactable"
232
+ * ```
136
233
  */
137
234
  Compactable,
138
235
  /**
139
236
  * @since 2.0.0
237
+ *
238
+ * ```md
239
+ * - Docs: https://fp-ts.github.io/data/modules/Context.ts.html
240
+ * - Module: "@fp-ts/data/Context"
241
+ * ```
140
242
  */
141
243
  Context,
142
244
  /**
143
245
  * @since 2.0.0
246
+ *
247
+ * ```md
248
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Contravatiant.ts.html
249
+ * - Module: "@fp-ts/core/typeclass/Contravariant"
250
+ * ```
144
251
  */
145
252
  Contravariant,
146
253
  /**
147
254
  * @since 2.0.0
255
+ *
256
+ * ```md
257
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Coproduct.ts.html
258
+ * - Module: "@fp-ts/core/typeclass/Coproduct"
259
+ * ```
148
260
  */
149
261
  Coproduct,
150
262
  /**
151
263
  * @since 2.0.0
264
+ *
265
+ * ```md
266
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Covariant.ts.html
267
+ * - Module: "@fp-ts/core/typeclass/Covariant"
268
+ * ```
152
269
  */
153
270
  Covariant,
154
271
  /**
155
272
  * @since 2.0.0
273
+ *
274
+ * ```md
275
+ * - Docs: https://fp-ts.github.io/data/modules/typeclass/ContravatiantWithIndex.ts.html
276
+ * - Module: "@fp-ts/data/typeclass/ContravariantWithIndex"
277
+ * ```
156
278
  */
157
279
  CovariantWithIndex,
158
280
  /**
159
281
  * @since 2.0.0
282
+ *
283
+ * ```md
284
+ * - Docs: https://effect-ts.github.io/io/modules/DefaultServices.ts.html
285
+ * - Module: "@effect/io/DefaultServices"
286
+ * ```
160
287
  */
161
288
  DefaultServices,
162
289
  /**
163
290
  * @since 2.0.0
291
+ *
292
+ * ```md
293
+ * - Docs: https://effect-ts.github.io/io/modules/Deferred.ts.html
294
+ * - Module: "@effect/io/Deferred"
295
+ * ```
164
296
  */
165
297
  Deferred,
166
298
  /**
167
299
  * @since 2.0.0
300
+ *
301
+ * ```md
302
+ * - Docs: https://fp-ts.github.io/data/modules/Differ.ts.html
303
+ * - Module: "@fp-ts/data/Differ"
304
+ * ```
168
305
  */
169
306
  Differ,
170
307
  /**
171
308
  * @since 2.0.0
309
+ *
310
+ * ```md
311
+ * - Docs: https://fp-ts.github.io/data/modules/Duration.ts.html
312
+ * - Module: "@fp-ts/data/Duration"
313
+ * ```
172
314
  */
173
315
  Duration,
174
316
  /**
175
317
  * @since 2.0.0
318
+ *
319
+ * ```md
320
+ * - Docs: https://effect-ts.github.io/io/modules/Effect.ts.html
321
+ * - Module: "@effect/io/Effect"
322
+ * ```
176
323
  */
177
324
  Effect,
178
325
  /**
179
326
  * @since 2.0.0
327
+ *
328
+ * ```md
329
+ * - Docs: https://fp-ts.github.io/data/modules/Either.ts.html
330
+ * - Module: "@fp-ts/data/Either"
331
+ * ```
180
332
  */
181
333
  Either,
182
334
  /**
183
335
  * @since 2.0.0
336
+ *
337
+ * ```md
338
+ * - Docs: https://fp-ts.github.io/data/modules/Equal.ts.html
339
+ * - Module: "@fp-ts/data/Equal"
340
+ * ```
184
341
  */
185
342
  Equal,
186
343
  /**
187
344
  * @since 2.0.0
345
+ *
346
+ * ```md
347
+ * - Docs: https://effect-ts.github.io/io/modules/ExecutionStrategy.ts.html
348
+ * - Module: "@effect/io/ExecutionStrategy"
349
+ * ```
188
350
  */
189
351
  ExecutionStrategy,
190
352
  /**
191
353
  * @since 2.0.0
354
+ *
355
+ * ```md
356
+ * - Docs: https://effect-ts.github.io/io/modules/Exit.ts.html
357
+ * - Module: "@effect/io/Exit"
358
+ * ```
192
359
  */
193
360
  Exit,
194
361
  /**
195
362
  * @since 2.0.0
363
+ *
364
+ * ```md
365
+ * - Docs: https://effect-ts.github.io/io/modules/Fiber.ts.html
366
+ * - Module: "@effect/io/Fiber"
367
+ * ```
196
368
  */
197
369
  Fiber,
198
370
  /**
199
371
  * @since 2.0.0
372
+ *
373
+ * ```md
374
+ * - Docs: https://effect-ts.github.io/io/modules/FiberRef.ts.html
375
+ * - Module: "@effect/io/FiberRef"
376
+ * ```
200
377
  */
201
378
  FiberRef,
202
379
  /**
203
380
  * @since 2.0.0
381
+ *
382
+ * ```md
383
+ * - Docs: https://effect-ts.github.io/io/modules/FiberRefs.ts.html
384
+ * - Module: "@effect/io/FiberRefs"
385
+ * ```
204
386
  */
205
387
  FiberRefs,
206
388
  /**
207
389
  * @since 2.0.0
390
+ *
391
+ * ```md
392
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Filterable.ts.html
393
+ * - Module: "@fp-ts/core/typeclass/Filterable"
394
+ * ```
208
395
  */
209
396
  Filterable,
210
397
  /**
211
398
  * @since 2.0.0
399
+ *
400
+ * ```md
401
+ * - Docs: https://fp-ts.github.io/data/modules/typeclass/FilterableWithIndex.ts.html
402
+ * - Module: "@fp-ts/data/typeclass/FilterableWithIndex"
403
+ * ```
212
404
  */
213
405
  FilterableWithIndex,
214
406
  /**
215
407
  * @since 2.0.0
408
+ *
409
+ * ```md
410
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/FlatMap.ts.html
411
+ * - Module: "@fp-ts/core/typeclass/FlatMap"
412
+ * ```
216
413
  */
217
414
  FlatMap,
218
415
  /**
219
416
  * @since 2.0.0
417
+ *
418
+ * ```md
419
+ * - Docs: https://fp-ts.github.io/data/modules/Function.ts.html
420
+ * - Module: "@fp-ts/data/Function"
421
+ * ```
220
422
  */
221
423
  flow,
222
424
  /**
223
425
  * @since 2.0.0
426
+ *
427
+ * ```md
428
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Foldable.ts.html
429
+ * - Module: "@fp-ts/core/typeclass/Foldable"
430
+ * ```
224
431
  */
225
432
  Foldable,
226
433
  /**
227
434
  * @since 2.0.0
435
+ *
436
+ * ```md
437
+ * - Docs: https://fp-ts.github.io/data/modules/Function.ts.html
438
+ * - Module: "@fp-ts/data/Function"
439
+ * ```
228
440
  */
229
441
  Function,
230
442
  /**
231
443
  * @since 2.0.0
444
+ *
445
+ * ```md
446
+ * - Docs: https://fp-ts.github.io/data/modules/typeclass/Gen.ts.html
447
+ * - Module: "@fp-ts/data/typeclass/Gen"
448
+ * ```
449
+ */
450
+ Gen,
451
+ /**
452
+ * @since 2.0.0
453
+ *
454
+ * ```md
455
+ * - Docs: https://fp-ts.github.io/data/modules/HashMap.ts.html
456
+ * - Module: "@fp-ts/data/HashMap"
457
+ * ```
232
458
  */
233
459
  HashMap,
234
460
  /**
235
461
  * @since 2.0.0
462
+ *
463
+ * ```md
464
+ * - Docs: https://fp-ts.github.io/data/modules/HashSet.ts.html
465
+ * - Module: "@fp-ts/data/HashSet"
466
+ * ```
236
467
  */
237
468
  HashSet,
238
469
  /**
239
470
  * @since 2.0.0
471
+ *
472
+ * ```md
473
+ * - Docs: https://fp-ts.github.io/core/modules/HKT.ts.html
474
+ * - Module: "@fp-ts/core/HKT"
475
+ * ```
240
476
  */
241
477
  HKT,
242
478
  /**
243
479
  * @since 2.0.0
480
+ *
481
+ * ```md
482
+ * - Docs: https://fp-ts.github.io/data/modules/Function.ts.html#hole
483
+ * - Module: "@fp-ts/data/Function"
484
+ * ```
244
485
  */
245
486
  hole,
246
487
  /**
247
488
  * @since 2.0.0
489
+ *
490
+ * ```md
491
+ * - Docs: https://effect-ts.github.io/io/modules/Hub.ts.html
492
+ * - Module: "@effect/io/Hub"
493
+ * ```
248
494
  */
249
495
  Hub,
250
496
  /**
251
497
  * @since 2.0.0
498
+ *
499
+ * ```md
500
+ * - Docs: https://fp-ts.github.io/data/modules/Identity.ts.html
501
+ * - Module: "@fp-ts/data/Identity"
502
+ * ```
252
503
  */
253
504
  Identity,
254
505
  /**
255
506
  * @since 2.0.0
507
+ *
508
+ * ```md
509
+ * - Docs: https://fp-ts.github.io/data/modules/Function.ts.html#identity
510
+ * - Module: "@fp-ts/data/Function"
511
+ * ```
256
512
  */
257
513
  identity,
258
514
  /**
259
515
  * @since 2.0.0
516
+ *
517
+ * ```md
518
+ * - Docs: https://fp-ts.github.io/data/modules/Queue.ts.html
519
+ * - Module: "@fp-ts/data/Queue"
520
+ * ```
260
521
  */
261
522
  ImmutableQueue,
262
523
  /**
263
524
  * @since 2.0.0
525
+ *
526
+ * ```md
527
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Invariant.ts.html
528
+ * - Module: "@fp-ts/core/typeclass/Invariant"
529
+ * ```
264
530
  */
265
531
  Invariant,
266
532
  /**
267
533
  * @since 2.0.0
534
+ *
535
+ * ```md
536
+ * - Docs: https://fp-ts.github.io/data/modules/Json.ts.html
537
+ * - Module: "@fp-ts/data/Json"
538
+ * ```
268
539
  */
269
540
  Json,
270
541
  /**
271
542
  * @since 2.0.0
543
+ *
544
+ * ```md
545
+ * - Docs: https://effect-ts.github.io/io/modules/Layer.ts.html
546
+ * - Module: "@effect/io/Layer"
547
+ * ```
272
548
  */
273
549
  Layer,
274
550
  /**
275
551
  * @since 2.0.0
552
+ *
553
+ * ```md
554
+ * - Docs: https://fp-ts.github.io/data/modules/List.ts.html
555
+ * - Module: "@fp-ts/data/List"
556
+ * ```
276
557
  */
277
558
  List,
278
559
  /**
279
560
  * @since 2.0.0
561
+ *
562
+ * ```md
563
+ * - Docs: https://effect-ts.github.io/io/modules/Logger.ts.html
564
+ * - Module: "@effect/io/Logger"
565
+ * ```
280
566
  */
281
567
  Logger,
282
568
  /**
283
569
  * @since 2.0.0
570
+ *
571
+ * ```md
572
+ * - Docs: https://effect-ts.github.io/io/modules/Metric.ts.html
573
+ * - Module: "@effect/io/Metric"
574
+ * ```
284
575
  */
285
576
  Metric,
286
577
  /**
287
578
  * @since 2.0.0
579
+ *
580
+ * ```md
581
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Monad.ts.html
582
+ * - Module: "@fp-ts/core/typeclass/Monad"
583
+ * ```
288
584
  */
289
585
  Monad,
290
586
  /**
291
587
  * @since 2.0.0
588
+ *
589
+ * ```md
590
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Monoid.ts.html
591
+ * - Module: "@fp-ts/core/typeclass/Monoid"
592
+ * ```
292
593
  */
293
594
  Monoid,
294
595
  /**
295
596
  * @since 2.0.0
597
+ *
598
+ * ```md
599
+ * - Docs: https://fp-ts.github.io/data/modules/mutable/MutableHashMap.ts.html
600
+ * - Module: "@fp-ts/data/mutable/MutableHashMap"
601
+ * ```
296
602
  */
297
603
  MutableHashMap,
298
604
  /**
299
605
  * @since 2.0.0
606
+ *
607
+ * ```md
608
+ * - Docs: https://fp-ts.github.io/data/modules/mutable/MutableHashSet.ts.html
609
+ * - Module: "@fp-ts/data/mutable/MutableHashSet"
610
+ * ```
300
611
  */
301
612
  MutableHashSet,
302
613
  /**
303
614
  * @since 2.0.0
615
+ *
616
+ * ```md
617
+ * - Docs: https://fp-ts.github.io/data/modules/mutable/MutableList.ts.html
618
+ * - Module: "@fp-ts/data/mutable/MutableList"
619
+ * ```
304
620
  */
305
621
  MutableList,
306
622
  /**
307
623
  * @since 2.0.0
624
+ *
625
+ * ```md
626
+ * - Docs: https://fp-ts.github.io/data/modules/mutable/MutableListBuilder.ts.html
627
+ * - Module: "@fp-ts/data/mutable/MutableListBuilder"
628
+ * ```
308
629
  */
309
630
  MutableListBuilder,
310
631
  /**
311
632
  * @since 2.0.0
633
+ *
634
+ * ```md
635
+ * - Docs: https://fp-ts.github.io/data/modules/mutable/MutableQueue.ts.html
636
+ * - Module: "@fp-ts/data/mutable/MutableQueue"
637
+ * ```
312
638
  */
313
639
  MutableQueue,
314
640
  /**
315
641
  * @since 2.0.0
642
+ *
643
+ * ```md
644
+ * - Docs: https://fp-ts.github.io/data/modules/mutable/MutableRef.ts.html
645
+ * - Module: "@fp-ts/data/mutable/MutableRef"
646
+ * ```
316
647
  */
317
648
  MutableRef,
318
649
  /**
319
650
  * @since 2.0.0
651
+ *
652
+ * ```md
653
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/NonEmptyTraversable.ts.html
654
+ * - Module: "@fp-ts/core/typeclass/NonEmptyTraversable"
655
+ * ```
320
656
  */
321
657
  NonEmptyTraversable,
322
658
  /**
323
659
  * @since 2.0.0
660
+ *
661
+ * ```md
662
+ * - Docs: https://fp-ts.github.io/data/modules/Number.ts.html
663
+ * - Module: "@fp-ts/data/Number"
664
+ * ```
324
665
  */
325
666
  Number,
326
667
  /**
327
668
  * @since 2.0.0
669
+ *
670
+ * ```md
671
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Of.ts.html
672
+ * - Module: "@fp-ts/core/typeclass/Of"
673
+ * ```
328
674
  */
329
675
  Of,
330
676
  /**
331
677
  * @since 2.0.0
678
+ *
679
+ * ```md
680
+ * - Docs: https://fp-ts.github.io/optic/modules/index.ts.html
681
+ * - Module: "@fp-ts/optic"
682
+ * ```
683
+ */
684
+ Optic,
685
+ /**
686
+ * @since 2.0.0
687
+ *
688
+ * ```md
689
+ * - Docs: https://fp-ts.github.io/data/modules/Option.ts.html
690
+ * - Module: "@fp-ts/data/Option"
691
+ * ```
332
692
  */
333
693
  Option,
334
694
  /**
335
695
  * @since 2.0.0
696
+ *
697
+ * ```md
698
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Order.ts.html
699
+ * - Module: "@fp-ts/core/typeclass/Order"
700
+ * ```
336
701
  */
337
702
  Order,
338
703
  /**
339
704
  * @since 2.0.0
705
+ *
706
+ * ```md
707
+ * - Docs: https://fp-ts.github.io/data/modules/Ordering.ts.html
708
+ * - Module: "@fp-ts/data/Ordering"
709
+ * ```
340
710
  */
341
711
  Ordering,
342
712
  /**
343
713
  * @since 2.0.0
714
+ *
715
+ * ```md
716
+ * - Docs: https://fp-ts.github.io/data/modules/Random.ts.html
717
+ * - Module: "@fp-ts/data/Random"
718
+ * ```
344
719
  */
345
720
  PCGRandom,
346
721
  /**
347
722
  * @since 2.0.0
723
+ *
724
+ * ```md
725
+ * - Docs: https://fp-ts.github.io/data/modules/Function.ts.html#pipe
726
+ * - Module: "@fp-ts/data/Function"
727
+ * ```
348
728
  */
349
729
  pipe,
350
730
  /**
351
731
  * @since 2.0.0
732
+ *
733
+ * ```md
734
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Pointed.ts.html
735
+ * - Module: "@fp-ts/core/typeclass/Pointed"
736
+ * ```
352
737
  */
353
738
  Pointed,
354
739
  /**
355
740
  * @since 2.0.0
741
+ *
742
+ * ```md
743
+ * - Docs: https://fp-ts.github.io/data/modules/Predicate.ts.html
744
+ * - Module: "@fp-ts/data/Predicate"
745
+ * ```
356
746
  */
357
747
  Predicate,
358
748
  /**
359
749
  * @since 2.0.0
750
+ *
751
+ * ```md
752
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Product.ts.html
753
+ * - Module: "@fp-ts/core/typeclass/Product"
754
+ * ```
360
755
  */
361
756
  Product,
362
757
  /**
363
758
  * @since 2.0.0
759
+ *
760
+ * ```md
761
+ * - Docs: https://effect-ts.github.io/io/modules/Queue.ts.html
762
+ * - Module: "@effect/io/Queue"
763
+ * ```
364
764
  */
365
765
  Queue,
366
766
  /**
367
767
  * @since 2.0.0
768
+ *
769
+ * ```md
770
+ * - Docs: https://effect-ts.github.io/io/modules/Random.ts.html
771
+ * - Module: "@effect/io/Random"
772
+ * ```
368
773
  */
369
774
  Random,
370
775
  /**
371
776
  * @since 2.0.0
777
+ *
778
+ * ```md
779
+ * - Docs: https://fp-ts.github.io/data/modules/ReadonlyArray.ts.html
780
+ * - Module: "@fp-ts/data/ReadonlyArray"
781
+ * ```
372
782
  */
373
783
  ReadonlyArray,
374
784
  /**
375
785
  * @since 2.0.0
786
+ *
787
+ * ```md
788
+ * - Docs: https://fp-ts.github.io/data/modules/RedBlackTree.ts.html
789
+ * - Module: "@fp-ts/data/RedBlackTree"
790
+ * ```
791
+ */
792
+ RedBlackTree,
793
+ /**
794
+ * @since 2.0.0
795
+ *
796
+ * ```md
797
+ * - Docs: https://effect-ts.github.io/io/modules/Ref.ts.html
798
+ * - Module: "@effect/io/Ref"
799
+ * ```
376
800
  */
377
801
  Ref,
378
802
  /**
379
803
  * @since 2.0.0
804
+ *
805
+ * ```md
806
+ * - Docs: https://effect-ts.github.io/io/modules/Reloadable.ts.html
807
+ * - Module: "@effect/io/Reloadable"
808
+ * ```
380
809
  */
381
810
  Reloadable,
382
811
  /**
383
812
  * @since 2.0.0
813
+ *
814
+ * ```md
815
+ * - Docs: https://effect-ts.github.io/io/modules/Runtime.ts.html
816
+ * - Module: "@effect/io/Runtime"
817
+ * ```
384
818
  */
385
819
  Runtime,
386
820
  /**
387
821
  * @since 2.0.0
822
+ *
823
+ * ```md
824
+ * - Docs: https://effect-ts.github.io/io/modules/Schedule.ts.html
825
+ * - Module: "@effect/io/Schedule"
826
+ * ```
388
827
  */
389
828
  Schedule,
390
829
  /**
391
830
  * @since 2.0.0
831
+ *
832
+ * ```md
833
+ * - Docs: https://effect-ts.github.io/io/modules/Scope.ts.html
834
+ * - Module: "@effect/io/Scope"
835
+ * ```
392
836
  */
393
837
  Scope,
394
838
  /**
395
839
  * @since 2.0.0
840
+ *
841
+ * ```md
842
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/SemiAlternative.ts.html
843
+ * - Module: "@fp-ts/core/typeclass/SemiAlternative"
844
+ * ```
396
845
  */
397
846
  SemiAlternative,
398
847
  /**
399
848
  * @since 2.0.0
849
+ *
850
+ * ```md
851
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/SemiApplicative.ts.html
852
+ * - Module: "@fp-ts/core/typeclass/SemiApplicative"
853
+ * ```
400
854
  */
401
855
  SemiApplicative,
402
856
  /**
403
857
  * @since 2.0.0
858
+ *
859
+ * ```md
860
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/SemiCoproduct.ts.html
861
+ * - Module: "@fp-ts/core/typeclass/SemiCoproduct"
862
+ * ```
404
863
  */
405
864
  SemiCoproduct,
406
865
  /**
407
866
  * @since 2.0.0
867
+ *
868
+ * ```md
869
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Semigroup.ts.html
870
+ * - Module: "@fp-ts/core/typeclass/Semigroup"
871
+ * ```
408
872
  */
409
873
  Semigroup,
410
874
  /**
411
875
  * @since 2.0.0
876
+ *
877
+ * ```md
878
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/SemiProduct.ts.html
879
+ * - Module: "@fp-ts/core/typeclass/SemiProduct"
880
+ * ```
412
881
  */
413
882
  SemiProduct,
414
883
  /**
415
884
  * @since 2.0.0
885
+ *
886
+ * ```md
887
+ * - Docs: https://fp-ts.github.io/data/modules/typeclass/Seq.ts.html
888
+ * - Module: "@fp-ts/data/typeclass/Seq"
889
+ * ```
416
890
  */
417
891
  Seq,
418
892
  /**
419
893
  * @since 2.0.0
894
+ *
895
+ * ```md
896
+ * - Docs: https://fp-ts.github.io/data/modules/SortedMap.ts.html
897
+ * - Module: "@fp-ts/data/SortedMap"
898
+ * ```
420
899
  */
421
900
  SortedMap,
422
901
  /**
423
902
  * @since 2.0.0
903
+ *
904
+ * ```md
905
+ * - Docs: https://fp-ts.github.io/data/modules/SortedSet.ts.html
906
+ * - Module: "@fp-ts/data/SortedSet"
907
+ * ```
424
908
  */
425
909
  SortedSet,
426
910
  /**
427
911
  * @since 2.0.0
912
+ *
913
+ * ```md
914
+ * - Docs: https://fp-ts.github.io/data/modules/String.ts.html
915
+ * - Module: "@fp-ts/data/String"
916
+ * ```
428
917
  */
429
918
  String,
430
919
  /**
431
920
  * @since 2.0.0
921
+ *
922
+ * ```md
923
+ * - Docs: https://effect-ts.github.io/io/modules/Supervisor.ts.html
924
+ * - Module: "@effect/io/Supervisor"
925
+ * ```
432
926
  */
433
927
  Supervisor,
434
928
  /**
435
929
  * @since 2.0.0
930
+ *
931
+ * ```md
932
+ * - Docs: https://effect-ts.github.io/io/modules/Tracer.ts.html
933
+ * - Module: "@effect/io/Tracer"
934
+ * ```
436
935
  */
437
936
  Tracer,
438
937
  /**
439
938
  * @since 2.0.0
939
+ *
940
+ * ```md
941
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/Traversable.ts.html
942
+ * - Module: "@fp-ts/core/typeclass/Traversable"
943
+ * ```
440
944
  */
441
945
  Traversable,
442
946
  /**
443
947
  * @since 2.0.0
948
+ *
949
+ * ```md
950
+ * - Docs: https://fp-ts.github.io/core/modules/typeclass/TraversableFilterable.ts.html
951
+ * - Module: "@fp-ts/core/typeclass/TraversableFilterable"
952
+ * ```
444
953
  */
445
954
  TraversableFilterable,
446
955
  /**