std::assert_eq

Macro std::assert_eq

macro_rules! assert_eq {
    ( $ left : expr , $ right : expr ) => { ... };
    (
$ left : expr , $ right : expr , $ ( $ 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.

Like assert!, this macro has a second version, where a custom panic message can be provided.

Examples

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

assert_eq!(a, b, "we are testing addition with {} and {}", 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.assert_eq.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部