max.rst

来自「Boost provides free peer-reviewed portab」· RST 代码 · 共 107 行

RST
107
字号
.. Metafunctions/Miscellaneous//max |90.. Copyright Aleksey Gurtovoy, David Abrahams 2007... Distributed under the Boost.. Software License, Version 1.0. (See accompanying.. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)max===Synopsis--------.. parsed-literal::        template<          typename N1        , typename N2        >    struct max    {        typedef |unspecified| type;    };Description-----------Returns the larger of its two arguments.Header------.. parsed-literal::        #include <boost/mpl/min_max.hpp>Model of--------|Metafunction|Parameters----------+---------------+-------------------+-------------------------------------------+| Parameter     | Requirement       | Description                               |+===============+===================+===========================================+| ``N1``, ``N2``| Any type          | Types to compare.                         |+---------------+-------------------+-------------------------------------------+Expression semantics--------------------For arbitrary types ``x`` and ``y``:.. parsed-literal::    typedef max<x,y>::type r;:Return type:    A type.:Precondition:    ``less<x,y>::value`` is a well-formed integral constant expression.:Semantics:    Equivalent to            .. parsed-literal::            typedef if_< less<x,y>,y,x >::type r;Complexity----------Constant time. Example-------.. parsed-literal::        typedef fold<          vector_c<int,1,7,0,-2,5,-1>        , int_<10>        , max<_1,_2>        >::type r;        BOOST_MPL_ASSERT(( is_same< r, int_<10> > ));See also--------|Metafunctions|, |Comparison|, |min|, |less|, |max_element|

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?