core::debug_assert! [-]  [+] [src]

macro_rules! debug_assert {
    ($($arg:tt)*) => (if cfg!(not(ndebug)) { assert!($($arg)*); })
}

Runtime assertion, disableable at compile time with --cfg ndebug