Max Lay
Max Lay
@stregouet This sounds really promising - would you be able to share your plugin? I have a repo that has turned into a bit of a nightmare to work on...
I'm currently in a world of hurt working heavily with fp-ts trees and otherwise readonly data, having to constantly be converting between readonly and mutable arrays. Additionally, monocle-ts's `index` function...
This would be fantastic!
This would be really helpful for me too. One thing to consider would be whether the find and filter should be operating on the tree itself, or the value contained....
@polymona Yes, that's what I mean :)
@DenisFrezzato That's a fair point, I was stretching the use case a bit. However I still see this as a bug, as the code compiles but leads to a runtime...
While a lot of this is over my head if I'm being honest, the encoding shown here: https://www.matechs.com/blog/encoding-hkts-in-typescript-once-again looks really nice, and I find it much easier to wrap my...
I've also noticed that Eq is incorrect for partial structs. Maybe it's worth creating a separate partial struct module?
More like used like this: ```js const partialEq = Eq.struct({ a: N.Eq, b: N.Eq }) ``` I've been playing around with the following: ```js export const partialStructEq = (eqs: {...
> I actually quite like this, but I think it's a little arbitrary to represent undefined with an option in this case. It is nice to be able to treat...