Macro nom::re_captures[][src]

macro_rules! re_captures {
    ($i:expr, $re:expr) => { ... };
}
This is supported on crate features regexp and alloc only.
Expand description

re_captures!(regexp) => &[T] -> IResult<&[T], Vec<Vec<&[T]>>> Returns the capture groups of all matches.

Requires the regexp feature.