1.0.0[][src]Macro core::assert

macro_rules! assert {
    ($cond:expr) => { ... };
    ($cond:expr,) => { ... };
    ($cond:expr, $($arg:tt)+) => { ... };
}

Ensure that a boolean expression is true at runtime.

For more information, see the documentation for std::assert!.