⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 find.rst

📁 Boost provides free peer-reviewed portable C++ source libraries. We emphasize libraries that work
💻 RST
字号:
.. Algorithms/Querying Algorithms//find |10.. 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)find====Synopsis--------.. parsed-literal::        template<          typename Sequence        , typename T        >    struct find    {        typedef |unspecified| type;    };Description-----------Returns an iterator to the first occurrence of type ``T`` in a ``Sequence``. Header------.. parsed-literal::        #include <boost/mpl/find.hpp>Parameters----------+---------------+-----------------------+-----------------------------------+| Parameter     | Requirement           | Description                       |+===============+=======================+===================================+| ``Sequence``  | |Forward Sequence|    | A sequence to search in.          |+---------------+-----------------------+-----------------------------------+| ``T``         | Any type              | A type to search for.             |+---------------+-----------------------+-----------------------------------+Expression semantics--------------------For any |Forward Sequence| ``s`` and arbitrary type ``t``:.. parsed-literal::    typedef find<s,t>::type i;    :Return type:    |Forward Iterator|.    :Semantics:    Equivalent to    .. parsed-literal::            typedef find_if<s, is_same<_,t> >::type i;Complexity----------Linear. At most ``size<s>::value`` comparisons for identity. Example-------.. parsed-literal::        typedef vector<char,int,unsigned,long,unsigned long> types;    typedef find<types,unsigned>::type iter;        BOOST_MPL_ASSERT(( is_same< deref<iter>::type, unsigned > ));    BOOST_MPL_ASSERT_RELATION( iter::pos::value, ==, 2 );See also--------|Querying Algorithms|, |contains|, |find_if|, |count|, |lower_bound|

⌨️ 快捷键说明

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