macro_rules! opt {
($stream:expr, $method:ident $(, $arg:expr)*) => { ... };
}Expand description
Optionally parse something. Returns None if the next token doesn’t match.
macro_rules! opt {
($stream:expr, $method:ident $(, $arg:expr)*) => { ... };
}Optionally parse something. Returns None if the next token doesn’t match.