Rune Tynan
Rune Tynan
- [ ] Add doc-blocks to functions - [ ] Add doc-blocks to classes - [x] Add doc-blocks to files (#47) - [ ] Add tutorials - [x] Getting Started...
- [ ] Things should have their own files - [x] FakeState - [ ] FakeHttp - [x] FakeWebsocket - [x] Callbacks - [ ] Assertions - [x] More assertion...
Currently, when trying to map with span, the parser will copy the context from the end-of-input. This makes preserving certain aside data, such as source ranges, difficult. Even with just...
Currently, there's no clean way to do something like ```rs parse_keyword() .then_with(|kw| parser(kw)) ``` Creating a parser that requires the ok result of the previous parser. It's possible with `custom`,...
## Proposal A `binary` module to match `text`, with similar helpers but for non-textual input. ## TL;DR Explanation The binary module would have functions for parsers like `int` and `string`,...
It would be nice if `PrecClimber`, or a variant of it, could have support for prefix/suffix operators. Currently it requires copying over the code and implementing it yourself, which while...
It seems like `OnceBox` should be able to support unsized types, as the `get_or_init` function expects the initializer to return a box, and stores the value behind a pointer. It...
Currently, trying to get 'permutations with replacement', it's hard to find in the documentation how to do that. I eventually found on the github from the issue about adding permutations...
Basically the reverse request of #243 - Currently, `Real` implies `Copy`, which restricts it from being implemented for real-value types that use non-copy internals (for example, a type that represents...
**Is your feature request related to a problem? Please describe.** When playing with BetterEnd, there's no renewable way to get many of the ingredients, and it would be nice to...