Macro dahlia::dprintln

source ·
macro_rules! dprintln {
    ($d:tt, $($arg:tt)*) => { ... };
}
Expand description

Wrapper over println!, takes a Dahlia instance as the first argument and uses its convert method for coloring strings.

Example

let d = Dahlia::new(Depth::Low, false);
let name = "Bob";
// The following two are equivalent
println!("{}", d.convert(format!("Hi &3{}&r!", name));
dprintln!(d, "Hi &3{}&r!", name)