7 lines
141 B
Rust
7 lines
141 B
Rust
|
pub fn parse_conditional<'a, I: 'a>()
|
||
|
-> impl Parser<Input = I, Output = Expr, PartialState = ()> + 'a
|
||
|
where
|
||
|
I: Stream<Item = char>,
|
||
|
{
|
||
|
}
|