Boost C++ 库

...世界上最受推崇和设计精良的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu,《C++ 编码规范

函数模板 operator<= - Boost C++ 函数库
PrevUpHomeNext

函数模板 operator<=

boost::movelib::operator<=

提要

// In header: <boost/move/unique_ptr.hpp>


template<typename T1, typename D1, typename T2, typename D2> 
  bool operator<=(const unique_ptr< T1, D1 > & x, 
                  const unique_ptr< T2, D2 > & y);

描述

返回值:!(y < x)。


PrevUpHomeNext