peggen-core 0.2.0

Generate recursive-descent & precedence climbing parsers. (traits)
Documentation
1
2
3
4
5
pub trait Prepend<Extra: Copy> {
    type Item;
    fn empty(with: Extra) -> Self;
    fn prepend(&mut self, value: Self::Item, with: Extra);
}