Markus Westerlind

Results 358 comments of Markus Westerlind

There isn't anything builtin to combine that would let you parallelize the work. You will need to chunk up the file on your own to get that. Of course, you...

> Dose the asyn method can be used to build dependency relations? What do you mean? > Monoidal parsing any example on rust, I search out some Haskell version. Thank...

Haven't looked at the code thoroughly yet but the gist of it seems like it would make a good addition! > It need the associated type Range to have a...

There are some examples that uses `impl Trait` but I have held of using it in the library itself to enable `combine` to be used on older compilers. Thanks to...

Unfortunately issues such as https://github.com/rust-lang/rust/issues/42940 causes rustc to error in some cases where it shouldn't so this might not be possible to fix in 4.x

Trying to think of things that could be improved. * Add some example error messages and how to resolved them? In some sense this should be covered by rust's own...

@Phaiax Sorry for not getting to this sooner (I have been away on a company conference this week). I have read through it once so far and spotted some errors...

Gone through https://github.com/Marwes/combine/wiki and https://github.com/Marwes/combine/wiki/Tutorial at least, sorry for being slow about this (partly because of a cold). I edited them and pushed the changes we can be seen below....

> How to make a type alias to the input type to simplify the method signature of the self defined parsers. (makes the parsers function signature more clean, would also...

Finally went through the rest of it, sorry this has taken so long! https://github.com/Marwes/combine/wiki/Error-Handling/_compare/c88b8dc687d04575b7af3fa17f8931187db0f9d5?short_path=ef17afe#diff-ef17afe15a0870202f6ce747383e3cab https://github.com/Marwes/combine/wiki/Input-Machinery/_compare/4c1083a30470e27353e64e1b47b8ccf1f48d8b27?short_path=a0ac0bb#diff-a0ac0bbc1447a16ecd31831812b33bc3 With the 3.7.7 release I now link directly to the wiki from the readme. Huge...