b_box/
lib.rs

1#[macro_export]
2macro_rules! b {
3    ($($tts:tt)*) => { Box::new($($tts)*) };
4}