macro_rules! empty_ss {
() => { ... };
}
Expand description
Creates an empty substitution set, pointed to by an Rc-pointer.
§Return
- Rc<SubstitutionSet>
§Usage
use std::rc::Rc;
use suiron::*;
let ss = empty_ss!();
macro_rules! empty_ss {
() => { ... };
}
Creates an empty substitution set, pointed to by an Rc-pointer.
use std::rc::Rc;
use suiron::*;
let ss = empty_ss!();