1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! Utilities suitable for both internal and public use. mod text; pub use text::*; mod mask; pub use mask::*; macro_rules! _dbg { ($($t:tt)*) => { #[cfg(debug_assertions)] { dbg!($($t)*); } }; } pub(crate) use _dbg;