box-macro 0.2.0

Literally just the macro `box_!` which is `Box::new`
Documentation

Box

Choose your own syntax!

Usage

// all the same as `let x = Box::new(y);`
let x = box_!(y); 
let x = b0x!(y);
let x = bx!(y);
let x = b!(y);