cw_write

Macro cw_write 

Source
macro_rules! cw_write {
    ($writer:expr, $($arg:tt)*) => { ... };
}
Expand description

Write formatted text to a CodeWriter (like std::write!)

§Example

write!(w, "let x = {}", 42)?;