Johan Tibell
Johan Tibell
I'd say this is quite high priority as otherwise there's a big risk that the changes don't get merged upstream and we have to continually fix all released versions. In...
I find the name confusing. Does this just create an element-strict `Seq` (which would imply that there aren't any references to the array) or is it still value-lazy, but careful...
I generally agree with @foxik here. It would help to clearly show the benefits of having both (i.e. with benchmarks). We also need to be careful so we measure the...
It sounds like you have a good benchmark then. :) Please add it to the benchmark suite and post the results here (including the naive `toList` comparison).
Have you benchmarked and showed that it's faster than `filterM . toList`. In the case of bytestring we rejected adding a patch like this because using rewrite rules we got...
The bigger question here is: should we add applicative versions of every function to the containers API? There's an argument to be made for it. You might want to perform...
I ran into this as well. In addition to the general reasons for supporting a custom axios instance mentioned above (i.e. don't mutate global state that can be used by...
This is my biggest gripe with all the different TypeScript OpenAPI clients out there. They aren't actually type safe! They all in the end do what is essentially an unsafe...
I started hacking on something here: https://github.com/ferdikoomen/openapi-typescript-codegen/pull/1195. Far from complete. Want to check if this is wanted feature first.
Re (2) I agree (and planned to do so). It can just be folded into the "type" guard. Unfortunately since I wrote this I've run into #942. Without control of...