operators (std::discard_block_engine)

operator==,!=(std::discard_block_engine)

template< class Engine, size_t p, size_t r >
bool operator==( const discard_block_engine<Engine,p,r>& lhs,
                 const discard_block_engine<Engine,p,r>& rhs );
(1) (since C++11)
template< class Engine, size_t p, size_t r >
bool operator!=( const discard_block_engine<Engine,p,r>& lhs,
                 const discard_block_engine<Engine,p,r>& rhs );
(2) (since C++11)

Compares two pseudo-random number engine adaptors. Two engine adaptors are equal, if their underlying engines are equal and their internal state (if any) is equal, that is, if they would generate equivalent values for any number of calls of operator().

Parameters

lhs, rhs - engine adaptors to compare

Return value

1) true if the engine adaptors are equivalent, false otherwise.
2) true if the engine adaptors are not equivalent, false otherwise.

Exceptions

(none).

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/numeric/random/discard_block_engine/operator_cmp

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部