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/mjs/index.mjs ADDED
@@ -0,0 +1,959 @@
1
+ /**
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.
27
+ */
28
+ import * as Cached from "@effect/io/Cached";
29
+ import * as Cause from "@effect/io/Cause";
30
+ import * as Clock from "@effect/io/Clock";
31
+ import * as DefaultServices from "@effect/io/DefaultServices";
32
+ import * as Deferred from "@effect/io/Deferred";
33
+ import * as Effect from "@effect/io/Effect";
34
+ import * as ExecutionStrategy from "@effect/io/ExecutionStrategy";
35
+ import * as Exit from "@effect/io/Exit";
36
+ import * as FiberRef from "@effect/io/FiberRef";
37
+ import * as Hub from "@effect/io/Hub";
38
+ import * as Layer from "@effect/io/Layer";
39
+ import * as Queue from "@effect/io/Queue";
40
+ import * as Random from "@effect/io/Random";
41
+ import * as Reloadable from "@effect/io/Reloadable";
42
+ import * as Runtime from "@effect/io/Runtime";
43
+ import * as Scope from "@effect/io/Scope";
44
+ import * as Supervisor from "@effect/io/Supervisor";
45
+ import * as Tracer from "@effect/io/Tracer";
46
+ import * as HKT from "@fp-ts/core/HKT";
47
+ import * as Alternative from "@fp-ts/core/typeclass/Alternative";
48
+ import * as Applicative from "@fp-ts/core/typeclass/Applicative";
49
+ import * as Bicovariant from "@fp-ts/core/typeclass/Bicovariant";
50
+ import * as Bounded from "@fp-ts/core/typeclass/Bounded";
51
+ import * as Chainable from "@fp-ts/core/typeclass/Chainable";
52
+ import * as Contravariant from "@fp-ts/core/typeclass/Contravariant";
53
+ import * as Coproduct from "@fp-ts/core/typeclass/Coproduct";
54
+ import * as Covariant from "@fp-ts/core/typeclass/Covariant";
55
+ import * as FlatMap from "@fp-ts/core/typeclass/FlatMap";
56
+ import * as Foldable from "@fp-ts/core/typeclass/Foldable";
57
+ import * as Invariant from "@fp-ts/core/typeclass/Invariant";
58
+ import * as Monad from "@fp-ts/core/typeclass/Monad";
59
+ import * as Monoid from "@fp-ts/core/typeclass/Monoid";
60
+ import * as NonEmptyTraversable from "@fp-ts/core/typeclass/NonEmptyTraversable";
61
+ import * as Of from "@fp-ts/core/typeclass/Of";
62
+ import * as Order from "@fp-ts/core/typeclass/Order";
63
+ import * as Pointed from "@fp-ts/core/typeclass/Pointed";
64
+ import * as Product from "@fp-ts/core/typeclass/Product";
65
+ import * as SemiAlternative from "@fp-ts/core/typeclass/SemiAlternative";
66
+ import * as SemiApplicative from "@fp-ts/core/typeclass/SemiApplicative";
67
+ import * as SemiCoproduct from "@fp-ts/core/typeclass/SemiCoproduct";
68
+ import * as Semigroup from "@fp-ts/core/typeclass/Semigroup";
69
+ import * as SemiProduct from "@fp-ts/core/typeclass/SemiProduct";
70
+ import * as Traversable from "@fp-ts/core/typeclass/Traversable";
71
+ import * as Boolean from "@fp-ts/data/Boolean";
72
+ import * as Chunk from "@fp-ts/data/Chunk";
73
+ import * as Context from "@fp-ts/data/Context";
74
+ import * as Duration from "@fp-ts/data/Duration";
75
+ import * as Either from "@fp-ts/data/Either";
76
+ import * as Equal from "@fp-ts/data/Equal";
77
+ import * as Function from "@fp-ts/data/Function";
78
+ import { absurd, flow, hole, identity, pipe, unsafeCoerce } from "@fp-ts/data/Function";
79
+ import * as HashMap from "@fp-ts/data/HashMap";
80
+ import * as HashSet from "@fp-ts/data/HashSet";
81
+ import * as Identity from "@fp-ts/data/Identity";
82
+ import * as Json from "@fp-ts/data/Json";
83
+ import * as List from "@fp-ts/data/List";
84
+ import * as MutableHashMap from "@fp-ts/data/mutable/MutableHashMap";
85
+ import * as MutableHashSet from "@fp-ts/data/mutable/MutableHashSet";
86
+ import * as MutableList from "@fp-ts/data/mutable/MutableList";
87
+ import * as MutableListBuilder from "@fp-ts/data/mutable/MutableListBuilder";
88
+ import * as MutableQueue from "@fp-ts/data/mutable/MutableQueue";
89
+ import * as MutableRef from "@fp-ts/data/mutable/MutableRef";
90
+ import * as Number from "@fp-ts/data/Number";
91
+ import * as Option from "@fp-ts/data/Option";
92
+ import * as Ordering from "@fp-ts/data/Ordering";
93
+ import * as Predicate from "@fp-ts/data/Predicate";
94
+ import * as ImmutableQueue from "@fp-ts/data/Queue";
95
+ import * as PCGRandom from "@fp-ts/data/Random";
96
+ import * as ReadonlyArray from "@fp-ts/data/ReadonlyArray";
97
+ import * as RedBlackTree from "@fp-ts/data/RedBlackTree";
98
+ import * as SortedMap from "@fp-ts/data/SortedMap";
99
+ import * as SortedSet from "@fp-ts/data/SortedSet";
100
+ import * as String from "@fp-ts/data/String";
101
+ import * as Compactable from "@fp-ts/data/typeclass/Compactable";
102
+ import * as CovariantWithIndex from "@fp-ts/data/typeclass/CovariantWithIndex";
103
+ import * as Filterable from "@fp-ts/data/typeclass/Filterable";
104
+ import * as FilterableWithIndex from "@fp-ts/data/typeclass/FilterableWithIndex";
105
+ import * as Gen from "@fp-ts/data/typeclass/Gen";
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";
109
+ import * as Differ from "effect/Differ";
110
+ import * as Fiber from "effect/Fiber";
111
+ import * as FiberRefs from "effect/FiberRefs";
112
+ import * as Logger from "effect/Logger";
113
+ import * as Metric from "effect/Metric";
114
+ import * as Optic from "effect/Optic";
115
+ import * as Ref from "effect/Ref";
116
+ import * as Schedule from "effect/Schedule";
117
+ export {
118
+ /**
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
+ * ```
125
+ */
126
+ absurd,
127
+ /**
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
+ * ```
134
+ */
135
+ Alternative,
136
+ /**
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
+ * ```
143
+ */
144
+ Applicative,
145
+ /**
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
+ * ```
152
+ */
153
+ Bicovariant,
154
+ /**
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
+ * ```
161
+ */
162
+ Boolean,
163
+ /**
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
+ * ```
170
+ */
171
+ Bounded,
172
+ /**
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
+ * ```
179
+ */
180
+ Cached,
181
+ /**
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
+ * ```
188
+ */
189
+ Cause,
190
+ /**
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
+ * ```
197
+ */
198
+ Chainable,
199
+ /**
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
+ * ```
206
+ */
207
+ Chunk,
208
+ /**
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
+ * ```
215
+ */
216
+ Clock,
217
+ /**
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
+ * ```
233
+ */
234
+ Compactable,
235
+ /**
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
+ * ```
242
+ */
243
+ Context,
244
+ /**
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
+ * ```
251
+ */
252
+ Contravariant,
253
+ /**
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
+ * ```
260
+ */
261
+ Coproduct,
262
+ /**
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
+ * ```
269
+ */
270
+ Covariant,
271
+ /**
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
+ * ```
278
+ */
279
+ CovariantWithIndex,
280
+ /**
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
+ * ```
287
+ */
288
+ DefaultServices,
289
+ /**
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
+ * ```
296
+ */
297
+ Deferred,
298
+ /**
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
+ * ```
305
+ */
306
+ Differ,
307
+ /**
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
+ * ```
314
+ */
315
+ Duration,
316
+ /**
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
+ * ```
323
+ */
324
+ Effect,
325
+ /**
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
+ * ```
332
+ */
333
+ Either,
334
+ /**
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
+ * ```
341
+ */
342
+ Equal,
343
+ /**
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
+ * ```
350
+ */
351
+ ExecutionStrategy,
352
+ /**
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
+ * ```
359
+ */
360
+ Exit,
361
+ /**
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
+ * ```
368
+ */
369
+ Fiber,
370
+ /**
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
+ * ```
377
+ */
378
+ FiberRef,
379
+ /**
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
+ * ```
386
+ */
387
+ FiberRefs,
388
+ /**
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
+ * ```
395
+ */
396
+ Filterable,
397
+ /**
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
+ * ```
404
+ */
405
+ FilterableWithIndex,
406
+ /**
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
+ * ```
413
+ */
414
+ FlatMap,
415
+ /**
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
+ * ```
422
+ */
423
+ flow,
424
+ /**
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
+ * ```
431
+ */
432
+ Foldable,
433
+ /**
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
+ * ```
440
+ */
441
+ Function,
442
+ /**
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
+ * ```
458
+ */
459
+ HashMap,
460
+ /**
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
+ * ```
467
+ */
468
+ HashSet,
469
+ /**
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
+ * ```
476
+ */
477
+ HKT,
478
+ /**
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
+ * ```
485
+ */
486
+ hole,
487
+ /**
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
+ * ```
494
+ */
495
+ Hub,
496
+ /**
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
+ * ```
503
+ */
504
+ Identity,
505
+ /**
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
+ * ```
512
+ */
513
+ identity,
514
+ /**
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
+ * ```
521
+ */
522
+ ImmutableQueue,
523
+ /**
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
+ * ```
530
+ */
531
+ Invariant,
532
+ /**
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
+ * ```
539
+ */
540
+ Json,
541
+ /**
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
+ * ```
548
+ */
549
+ Layer,
550
+ /**
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
+ * ```
557
+ */
558
+ List,
559
+ /**
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
+ * ```
566
+ */
567
+ Logger,
568
+ /**
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
+ * ```
575
+ */
576
+ Metric,
577
+ /**
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
+ * ```
584
+ */
585
+ Monad,
586
+ /**
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
+ * ```
593
+ */
594
+ Monoid,
595
+ /**
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
+ * ```
602
+ */
603
+ MutableHashMap,
604
+ /**
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
+ * ```
611
+ */
612
+ MutableHashSet,
613
+ /**
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
+ * ```
620
+ */
621
+ MutableList,
622
+ /**
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
+ * ```
629
+ */
630
+ MutableListBuilder,
631
+ /**
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
+ * ```
638
+ */
639
+ MutableQueue,
640
+ /**
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
+ * ```
647
+ */
648
+ MutableRef,
649
+ /**
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
+ * ```
656
+ */
657
+ NonEmptyTraversable,
658
+ /**
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
+ * ```
665
+ */
666
+ Number,
667
+ /**
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
+ * ```
674
+ */
675
+ Of,
676
+ /**
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
+ * ```
692
+ */
693
+ Option,
694
+ /**
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
+ * ```
701
+ */
702
+ Order,
703
+ /**
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
+ * ```
710
+ */
711
+ Ordering,
712
+ /**
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
+ * ```
719
+ */
720
+ PCGRandom,
721
+ /**
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
+ * ```
728
+ */
729
+ pipe,
730
+ /**
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
+ * ```
737
+ */
738
+ Pointed,
739
+ /**
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
+ * ```
746
+ */
747
+ Predicate,
748
+ /**
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
+ * ```
755
+ */
756
+ Product,
757
+ /**
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
+ * ```
764
+ */
765
+ Queue,
766
+ /**
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
+ * ```
773
+ */
774
+ Random,
775
+ /**
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
+ * ```
782
+ */
783
+ ReadonlyArray,
784
+ /**
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
+ * ```
800
+ */
801
+ Ref,
802
+ /**
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
+ * ```
809
+ */
810
+ Reloadable,
811
+ /**
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
+ * ```
818
+ */
819
+ Runtime,
820
+ /**
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
+ * ```
827
+ */
828
+ Schedule,
829
+ /**
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
+ * ```
836
+ */
837
+ Scope,
838
+ /**
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
+ * ```
845
+ */
846
+ SemiAlternative,
847
+ /**
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
+ * ```
854
+ */
855
+ SemiApplicative,
856
+ /**
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
+ * ```
863
+ */
864
+ SemiCoproduct,
865
+ /**
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
+ * ```
872
+ */
873
+ Semigroup,
874
+ /**
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
+ * ```
881
+ */
882
+ SemiProduct,
883
+ /**
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
+ * ```
890
+ */
891
+ Seq,
892
+ /**
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
+ * ```
899
+ */
900
+ SortedMap,
901
+ /**
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
+ * ```
908
+ */
909
+ SortedSet,
910
+ /**
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
+ * ```
917
+ */
918
+ String,
919
+ /**
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
+ * ```
926
+ */
927
+ Supervisor,
928
+ /**
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
+ * ```
935
+ */
936
+ Tracer,
937
+ /**
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
+ * ```
944
+ */
945
+ Traversable,
946
+ /**
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
+ * ```
953
+ */
954
+ TraversableFilterable,
955
+ /**
956
+ * @since 2.0.0
957
+ */
958
+ unsafeCoerce };
959
+ //# sourceMappingURL=index.mjs.map