Boost C++ 库

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

函数模板 operator> - Boost C++ 函数库
PrevUpHomeNext

函数模板 operator>

boost::stl_interfaces::operator>

提要

// In header: <boost/stl_interfaces/sequence_container_interface.hpp>


template<typename ContainerInterface> 
  decltype(v1_dtl::derived_container(lhs), lhs< rhs) 
  operator>(ContainerInterface const & lhs, ContainerInterface const & rhs);

描述

为所有从 sequence_container_interface 派生的容器实现 operator>()


PrevUpHomeNext