Macro nom::exact [−][src]
macro_rules! exact { ($i:expr, $submac:ident!( $($args:tt)* )) => { ... }; ($i:expr, $f:expr) => { ... }; }
exact!()
will fail if the child parser does not consume the whole data
TODO: example
macro_rules! exact { ($i:expr, $submac:ident!( $($args:tt)* )) => { ... }; ($i:expr, $f:expr) => { ... }; }
exact!()
will fail if the child parser does not consume the whole data
TODO: example