macro_rules! dprintln_unchecked {
($template:literal, $($args:tt)*) => { ... };
($template:expr, $($args:tt)*) => { ... };
}Expand description
Dynamic drop in println! replacement. Unchecked variant.
dfmt::dprintln_unchecked!("Hello, {}!", "World");
dfmt::dprintln_unchecked!("Hello, {}!".to_string(), "World");Refer to the dformat!() documentation for the full API overview.