data icon indicating copy to clipboard operation
data copied to clipboard

Custom built data types leveraged by the Effect ecosystem

Results 7 data issues
Sort by recently updated
recently updated
newest added

Some of the existing operators return `Iterable` and some others also expect `Iterable`. However, due to lack of public operators (like `map`) on `Iterable`, we now have to leverage `ReadonlyArray`...

After #486 got merged I now need a polyfill for TextEncoder for react-native. Just wanted to point out that TextEncoder is not (yet) in the ECMAScript spec: https://github.com/facebook/hermes/issues/948#issuecomment-1485527603 Just wanted...

some combinators take or return a mutable tuple: `String.split` returns `[string, ...string[]]` some combinators take or return a readonly tuple: `ReadonlyArray.lastNonEmpty` takes `readonly [A, ...A[]]` I understand how this drift...

# Summary The user is experiencing an error with the `@effect/schema` library in Hono and Cloudflare Worker. They suspect that the error is due to an outdated TypeScript version or...

# Summary The user is reporting an issue with webpack not properly mangling the code of the `@effect/data` library. They mention that they have encountered this issue before and will...

`version: 0.12.8` You can force an invalid type signature to `Struct.evolve` by explicitly annotating its generics during usage. ```typescript import * as Struct from "@effect/data/Struct" const mystruct = { a:...

We currently have the following traits: - Hash : to represents objects that can be hashed - Equal : to represent equality between objects We can see traits as typeclasses...