C. K. Young
C. K. Young
(Note: despite the similar titles, this PR is not related to #83 at all. This PR is specific to the changes introduced in #91.) When using `AnyBitPattern` derive, an automatic...
Now that we have associated types for `Parser` (#1626), we can finally make `ParserIterator` support any `Parser`, not just `FnMut(I) -> IResult`.
`nom::multi::many` and `nom::many::fold` consider empty ranges, as checked by `NomRange::is_inverted`, to be invalid. Unfortunately, that method is incorrectly implemented for `RangeTo`, meaning that `..0` is not considered invalid when it...
The [template parameter syntax](https://javaee.github.io/javaee-spec/javadocs/javax/ws/rs/Path.html#value--) allows the regex to have one level of braces, as long as they are evenly matched, arbitrarily many times. However, `JerseyUriBuilder` does not currently handle this...