diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib.rs | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -923,6 +923,13 @@ where r#if(|c: &I::Item| c.is_whitespace()).list(1..).recognize() } +pub fn any<I>() -> impl Parser<I, Output = I::Item> +where + I: Input, +{ + r#if(|_| true) +} + pub mod str { use super::*; |
