dbg_mac
is a Rust crate that provides macros that are only compiled in if debug symbols are
present.
Below are examples of every macro implemented in this crate:
```rust // std::unimplemented, but only if built with debug assertions. dbg_unimplemented!();
// std::unreachable, but only if built with debug assertions. dbg_unreachable!();
// std::todo, but only if built with debug assertions. dbg_todo!();
// std::panic, but only if built with debug assertions. dbg_panic!();
// std::compileerror, but only if built with debug assertions. dbgcompile_error!();
// Will print "Hello, debug!", but only if built with debug assertions. if_dbg!(println!("Hello, debug!")); ```
Milo Banks