options_parse

Function options_parse 

Source
pub fn options_parse<N, T: Clone>(
    l: &[fn(&'_ mut Vec<T>) -> Option<N>],
    stack: &'_ mut Vec<T>,
) -> Option<N>
Expand description

Trys different parsers from a list until one works. The first argument is the list of parsers, and the second is the stack.