marpa 0.3.0

Safe bindings to the libmarpa parsing engine
Documentation
1
2
3
4
5
6
7
8
9
macro_rules! result_from {
    ( $t1:ident, $t2:ident ) => {
        impl From<$t2> for Result<$t1> {
            fn from(other: $t2) -> Self {
                $t1::new(other)
            }
        }
    };
}