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

📄 pair.rst

📁 C++的一个好库。。。现在很流行
💻 RST
字号:
.. Data Types/Miscellaneous//pair |10

pair
====

Synopsis
--------

.. parsed-literal::
    
    template<
          typename T1
        , typename T2
        >
    struct pair
    {
        typedef pair type;
        typedef T1 first;
        typedef T2 second;
    };


Description
-----------

A transparent holder for two arbitrary types.


Header
------

.. parsed-literal::
    
    #include <boost/mpl/pair.hpp>


Example
-------

Count a number of elements in the sequence together with a number of negative
elements among these.

.. parsed-literal::
    
    typedef fold<
          vector_c<int,-1,0,5,-7,-2,4,5,7>
        , pair< int_<0>, int_<0> >
        , pair< 
              next< first<_1> >
            , if_< 
                  less< _2, int_<0> >
                , next< second<_1> >
                , second<_1> 
                >
            >
        >::type p;

    BOOST_MPL_ASSERT_RELATION( p::first::value, ==, 8 );
    BOOST_MPL_ASSERT_RELATION( p::second::value, ==, 3 );


See also
--------

|Data Types|, |Sequences|, |first|, |second|

⌨️ 快捷键说明

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