std::debug_assert_eq

Macro std::debug_assert_eq

macro_rules! debug_assert_eq {
    ( $ ( $ arg : tt ) * ) => { ... };
}

Asserts that two expressions are equal to each other.

On panic, this macro will print the values of the expressions with their debug representations.

Unlike assert_eq!, debug_assert_eq! statements are only enabled in non optimized builds by default. An optimized build will omit all debug_assert_eq! statements unless -C debug-assertions is passed to the compiler. This makes debug_assert_eq! useful for checks that are too expensive to be present in a release build but may be helpful during development.

Examples

let a = 3;
let b = 1 + 2;
debug_assert_eq!(a, b);

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/macro.debug_assert_eq.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部