C++:greater<int> and Less<int>

Source: Internet
Author: User

Greater and less are the two structures in Xfunctional.h, with the following code:

1template<class_ty =void>2     struct Less3{//functor for operator<4 typedef _ty First_argument_type;5 typedef _ty Second_argument_type;6typedefBOOLresult_type;7 8constexprBOOL operator()(Const_ty& _left,Const_ty& _right)Const9{//apply operator< to operandsTen         return(_left <_right); One         } A};
1template<class_ty =void>2     structGreater3{//functor for operator>4 typedef _ty First_argument_type;5 typedef _ty Second_argument_type;6typedefBOOLresult_type;7 8constexprBOOL operator()(Const_ty& _left,Const_ty& _right)Const9{//apply operator> to operandsTen         return(_left >_right); One         } A};

Greater indicates that the built-in types are sorted from large to small, less indicates built-in types from small to large.

C++:greater<int> and Less<int>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.