operator==,!=(std::subtract_with_carry_engine)
来自cppreference.com
< cpp | numeric | random | subtract with carry engine
template< class UIntType, size_t w, size_t s, size_t r > bool operator==( const subtract_with_carry_engine<UIntType,w,s,r>& lhs, |
(1) | (C++11 起) |
template< class UIntType, size_t w, size_t s, size_t r > bool operator!=( const subtract_with_carry_engine<UIntType,w,s,r>& lhs, |
(2) | (C++11 起) |
比较二个伪随机数引擎。若其内部状态等价,即对任何数量的 operator() 调用都会生成相等的值,则二个引擎相等。
参数
lhs, rhs | - | 要比较的引擎 |
返回值
1) 若引擎等价则为 true ,否则为 false 。
2) 若引擎不等价则为 true ,否则为 false 。
异常
(无)