Xia Li-yao
Xia Li-yao
@Bodigrim Is there a policy for contributors to know upfront what the next version number is going to be? That seems a blocking thing to make the second item actionable....
There are also requests to add non-Unicode encoders in text (#324, #252), that would make something like `EncodingError` useful again. At the same time I'm not a fan of putting...
This looks good to me. Would any other @haskell/text maintainers like to chime in? Let's merge this with one more approval. This PR seems to actually close #244, or did...
@Bodigrim Where would be a good place to add such tests? There doesn't seem to be a unit-testing suite, is there? It might be good to document this somewhere too.
Thanks. I didn't realize we could (and were already) using `Data.List` as a reference implementation for property testing.
Ping. 1. Add tests. 2. (optional) Add lazy versions.
Yes please :)
Rather than STT, safer alternatives would be to specialize this to one specific monad (was state the original motivation?) or to use a different algorithm that does not involve STT.
STT is notably unsafe with continuations.
This still has the same unsafety as STT, since it's just an inlining of the STT logic. You can cause a segfault by specializing to `ContT` and by using a...