~ubuntu-branches/ubuntu/breezy/aqsis/breezy

« back to all changes in this revision

Viewing changes to boost/boost/mpl/transform.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Will Newton
  • Date: 2004-12-07 20:06:49 UTC
  • Revision ID: james.westby@ubuntu.com-20041207200649-fccswkrvp4oc8lmn
Tags: upstream-0.9.3
ImportĀ upstreamĀ versionĀ 0.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//-----------------------------------------------------------------------------
 
2
// boost mpl/transform.hpp header file
 
3
// See http://www.boost.org for updates, documentation, and revision history.
 
4
//-----------------------------------------------------------------------------
 
5
//
 
6
// Copyright (c) 2000-02
 
7
// Aleksey Gurtovoy
 
8
//
 
9
// Permission to use, copy, modify, distribute and sell this software
 
10
// and its documentation for any purpose is hereby granted without fee, 
 
11
// provided that the above copyright notice appears in all copies and 
 
12
// that both the copyright notice and this permission notice appear in 
 
13
// supporting documentation. No representations are made about the 
 
14
// suitability of this software for any purpose. It is provided "as is" 
 
15
// without express or implied warranty.
 
16
 
 
17
#ifndef BOOST_MPL_TRANSFORM_HPP_INCLUDED
 
18
#define BOOST_MPL_TRANSFORM_HPP_INCLUDED
 
19
 
 
20
#include "boost/mpl/fold_backward.hpp"
 
21
#include "boost/mpl/push_front.hpp"
 
22
#include "boost/mpl/clear.hpp"
 
23
#include "boost/mpl/lambda.hpp"
 
24
#include "boost/mpl/apply.hpp"
 
25
#include "boost/mpl/protect.hpp"
 
26
#include "boost/mpl/aux_/void_spec.hpp"
 
27
 
 
28
namespace boost {
 
29
namespace mpl {
 
30
 
 
31
namespace aux {
 
32
 
 
33
template< typename Op >
 
34
struct transform_op
 
35
{
 
36
    template< typename Sequence, typename T > struct apply
 
37
    {
 
38
        typedef typename push_front<
 
39
              Sequence
 
40
            , typename apply1<Op,T>::type
 
41
            >::type type;
 
42
    };
 
43
};
 
44
 
 
45
} // namespace aux
 
46
 
 
47
BOOST_MPL_AUX_AGLORITHM_NAMESPACE_BEGIN
 
48
 
 
49
template<
 
50
      typename BOOST_MPL_AUX_VOID_SPEC_PARAM(Sequence)
 
51
    , typename BOOST_MPL_AUX_VOID_SPEC_PARAM(Operation)
 
52
    >
 
53
struct transform
 
54
{
 
55
 private:
 
56
    typedef typename lambda<Operation>::type op_;
 
57
    typedef typename clear<Sequence>::type result_;
 
58
 
 
59
 public:
 
60
    typedef typename fold_backward<
 
61
          Sequence
 
62
        , result_
 
63
        , protect< aux::transform_op<op_> >
 
64
        >::type type;
 
65
};
 
66
 
 
67
BOOST_MPL_AUX_AGLORITHM_NAMESPACE_END
 
68
 
 
69
BOOST_MPL_AUX_ALGORITHM_VOID_SPEC(2, transform)
 
70
 
 
71
} // namespace mpl
 
72
} // namespace boost
 
73
 
 
74
#endif // BOOST_MPL_TRANSFORM_HPP_INCLUDED