[][src]Macro libsugar::new

macro_rules! new {
    () => { ... };
    ($e:expr) => { ... };
}

new a Box<T>

new!(xxx)

equivalent to

Box::new(xxx)