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