Joshua Barretto
Joshua Barretto
I agree, this should 'just work'. Monoid laws, etc. I'll look into backporting this over the next few days if it's a problem for you. That said, I'd recommend using...
I'm happy to accept PRs to the 0.9 branch and perform releases for it. I wouldn't consider this to be a breaking change but a fix, too.
You're right that there are some holes in the API here. That said, I think your original problem can broadly be solved more simply: ```rs let string = none_of('"') //...
Urgh, I'm so sorry. GitHub swallowed my notification for this PR and I promptly forgot about it until now. > * I have not been able to discover what the...
For the time being I am going to merge this, and fix the minor issues later.
Well caught! I think the assumption [here](https://github.com/zesterer/chumsky/blob/main/src/combinator.rs#L1926), that every iteration should yield a change in the cursor position, is wrong. In this case, the first iteration (which looks only for...
Unfortunately not right now, it's very much a desired thing though.
This has now been implemented in aebfc54.
This PR seems to remove several things that were unused, but with intent to use later. While I think clippy is usually a useful tool and very useful on projects...
I have added a section to the guide [about parser state](https://github.com/zesterer/chumsky/blob/main/guide/key_concepts.md#parser-state), if it helps. I intend to do the same about parse context... at some point. > In my understanding,...