Back to Arangodb

pair

3rdParty/boost/1.78.0/libs/mpl/doc/refmanual/pair.html

3.12.9.12.2 KB
Original Source

| Prev Next | Back Along | Up Home | Full TOC | Front Page / Data Types / Miscellaneous / pair |

pair

Synopsis

template<
      typename T1
    , typename T2
    >
struct[pair](./pair.html){
    typedef[pair](./pair.html)type;
    typedef T1 first;
    typedef T2 second;
};

Description

A transparent holder for two arbitrary types.

#include <[boost/mpl/pair.hpp](../../../../boost/mpl/pair.hpp)>

Example

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

typedef[fold](./fold.html)<[vector\_c](./vector-c.html)<int,-1,0,5,-7,-2,4,5,7>
    ,[pair](./pair.html)<[int\_](./int.html)<0>,[int\_](./int.html)<0> >
    ,[pair](./pair.html)<[next](./next.html)< first<[\_1](./placeholders.html)> >
        ,[if\_](./if.html)<[less](./less.html)<[\_2](./placeholders.html),[int\_](./int.html)<0> >
            ,[next](./next.html)< second<[\_1](./placeholders.html)> >
            , second<[\_1](./placeholders.html)>
            >
        >
    >::type p;[BOOST\_MPL\_ASSERT\_RELATION](./assert-relation.html)( p::first::value, ==, 8 );[BOOST\_MPL\_ASSERT\_RELATION](./assert-relation.html)( p::second::value, ==, 3 );

See also

Data Types, Sequences, first, second

| Prev Next | Back Along | Up Home | Full TOC |

Copyright © 2001-2009 Aleksey Gurtovoy and David Abrahams 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) |