Macro synom::many0 [] [src]

macro_rules! many0 {
    ($i:expr, $submac:ident!( $($args:tt)* )) => { ... };
    ($i:expr, $f:expr) => { ... };
}

Parse zero or more values using the given parser.

You may also be looking for:

extern crate syn;
#[macro_use] extern crate synom;

use syn::Item;
use syn::parse::item;

named!(items -> Vec<Item>, many0!(item));

fn main() {
    let input = "
        fn a() {}
        fn b() {}
    ";

    let parsed = items(input).expect("items");

    assert_eq!(parsed.len(), 2);
    println!("{:?}", parsed);
}