[][src]Macro nom::exact

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