Where is *typeclass*
I am having difficulty understanding the differences between fp-ts and effect-ts/data.
It appears that effect-ts/data is a part of fp-ts without the typeclass.
Why doesn't data in effect-ts/data implement the "typeclass"?
Additionally, how can I convert
It appears that effect-ts/data is a part of fp-ts without the typeclass.
Why doesn't data in effect-ts/data implement the "typeclass"?
Additionally, how can I convert
ReadonlyArray<Option<A>> to Option<ReadonlyArray<A>> if sequence and Traversable are not implemented in effect-ts/data?