operator==, !=(std::independent_bits_engine)
来自 cppreference.com
< cpp | numeric | random | independent bits engine
friend bool operator==( const independent_bits_engine& lhs, const independent_bits_engine& rhs ); |
(1) | (自 C++11 起) |
friend bool operator!=( const independent_bits_engine& lhs, const independent_bits_engine& rhs ); |
(2) | (自 C++11 起) (直到 C++20) |
比较两个伪随机数引擎适配器。如果两个引擎适配器的底层引擎相等,并且它们的内部状态(如果有)相等,即如果它们在对 operator() 的任意次数调用中会生成等效的值,则两个引擎适配器相等。
这些函数对普通 非限定 或 限定查找 不可見,并且只能通过 参数相关查找 在 std::independent_bits_engine<Engine, w, UIntType> 是参数的关联类时找到。
|
(自 C++20 起) |
内容 |
[编辑] 参数
lhs, rhs | - | 要比较的引擎适配器 |
[编辑] 返回值
1) true 如果引擎适配器等效,否则为 false。
2) true 如果引擎适配器不等效,否则为 false。
[编辑] 异常
不抛出任何异常。
[编辑] 缺陷报告
以下行为更改缺陷报告被追溯应用到以前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确的行为 |
---|---|---|---|
LWG 3519 | C++11 | 相等运算符的形式未指定 | 指定为隐藏的友元 |