count.rst

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

RST
96
字号
.. Algorithms/Querying Algorithms//count |40.. 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)count=====Synopsis--------.. parsed-literal::        template<          typename Sequence        , typename T        >    struct count    {        typedef |unspecified| type;    };Description-----------Returns the number of elements in a ``Sequence`` that are identical to ``T``.Header------.. parsed-literal::        #include <boost/mpl/count.hpp>Parameters----------+---------------+---------------------------+-----------------------------------+| Parameter     | Requirement               | Description                       |+===============+===========================+===================================+| ``Sequence``  | |Forward Sequence|        | A sequence to be examined.        |+---------------+---------------------------+-----------------------------------+| ``T``         | Any type                  | A type to search for.             |+---------------+---------------------------+-----------------------------------+Expression semantics--------------------For any |Forward Sequence| ``s`` and arbitrary type ``t``:.. parsed-literal::    typedef count<s,t>::type n;:Return type:    |Integral Constant|. :Semantics:    Equivalent to     .. parsed-literal::            typedef count_if< s,is_same<_,T> >::type n;Complexity----------Linear. Exactly ``size<s>::value`` comparisons for identity. Example-------.. parsed-literal::        typedef vector<int,char,long,short,char,short,double,long> types;    typedef count<types, short>::type n;        BOOST_MPL_ASSERT_RELATION( n::value, ==, 2 );See also--------|Querying Algorithms|, |count_if|, |find|, |find_if|, |contains|, |lower_bound|

⌨️ 快捷键说明

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