• Home
  • Raw
  • Download

Lines Matching refs:combinator

122 - `take_until1` combinator
143 - infinite loop in `escaped` combinator
316 to convert to a more usable type, the `into` combinator can convert the error type
318 `ContextError` for the `context` combinator, and `FromExternalError` for `map_res`.
336 - the `context` combinator is not linked to `ParseError` anymore, instead it come with its own `Con…
338 …sers can be something else than a function. This trait also comes with combinator methods like `ma…
344 … `FromExternalError` allows wrapping the error returned by the function in the `map_res` combinator
355 - `eof` function combinator
357 - `length_count` function combinator
481 - the verify combinator's condition function now takes its argument by reference
592 - `map_res_err!` combinator that appends the error of its argument function in verbose errors mode
597 - the `bytes` combinator was not compiling in some cases
664 - the `not!` combinator returns unit `()`
668 - the `sep!` combinator for whitespace only consumes whitespace in the prefix, while the `ws!` comb…
676 - the `exact!()` combinator will fail if we did not consume the whole input
677 - the `take_while_m_n!` combinator will match a specified number of characters
705 - the permutation combinator now supports optional child parsers
732 - @gmorenz for the `bytes` combinator
733 - @meh for character combinator fixes for UTF-8
750 - the `bytes` combinator transforms a bit stream back to a byte slice for child parsers
911 - the `not!` combinator now accepts functions
921 This version also adds a lot of interesting features, like the permutation combinator or whitespace…
945 - whitespace separated format support: with the `ws!` combinator, you can automatically introduce w…
946 - the `permutation!` combinator applies its child parsers in any order, as long as they all succeed…
967 - the `count!`, `count_fixed!` and `length_*!` combinator calculate incomplete data needs correctly
1006 - @cholcombe973 for adding the `cond_with_error!` combinator
1060 - when a parser or combinator was returning an empty buffer as remaining part, it was generating on…
1069 - @dirk for the `alt_complete!` combinator
1078 - `alt_complete!` works like the `alt!` combinator, but tries the next branch if the current one re…
1081combinator takes a list of parsers as argument, and applies them serially on the input. If all of …
1109 - `value!` is a combinator that always returns the same value. If a child parser is passed as secon…
1144 - @mrordinaire for the `length_bytes!` combinator
1193 - @aleksander for the `switch!` combinator idea
1338 - @keruspe for the `take_str` parser and the function application combinator