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