cell

Macro cell 

Source
macro_rules! cell {
    ($value:expr) => { ... };
}
Expand description

cell! Tired of calling new all the time? Here you go!

ยงExample

use macroland::cell;

let macroland_cell = cell!("Hi friends!");
let std_cell = std::cell::Cell::new("Uwu");

assert_eq!(macroland_cell, std_cell);