]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/fusion/include/boost/fusion/view/transform_view/detail/at_impl.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / fusion / include / boost / fusion / view / transform_view / detail / at_impl.hpp
CommitLineData
7c673cae
FG
1/*=============================================================================
2 Copyright (c) 2001-2011 Joel de Guzman
3 Copyright (c) 2005-2006 Dan Marsden
4
5 Distributed under the Boost Software License, Version 1.0. (See accompanying
6 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7==============================================================================*/
8#if !defined(BOOST_FUSION_AT_IMPL_20061029_1946)
9#define BOOST_FUSION_AT_IMPL_20061029_1946
10
11#include <boost/fusion/support/config.hpp>
12#include <boost/mpl/apply.hpp>
13#include <boost/fusion/view/transform_view/detail/apply_transform_result.hpp>
14#include <boost/fusion/sequence/intrinsic/at.hpp>
15
16namespace boost { namespace fusion {
17 struct transform_view_tag;
18 struct transform_view2_tag;
19
20 namespace extension
21 {
22 template<typename Tag>
23 struct at_impl;
24
25 template<>
26 struct at_impl<transform_view_tag>
27 {
28 template<typename Seq, typename N>
29 struct apply
30 {
31 typedef typename Seq::transform_type F;
32 typedef detail::apply_transform_result<F> transform_type;
33 typedef typename boost::fusion::result_of::at<typename Seq::sequence_type, N>::type value_type;
34 typedef typename mpl::apply<transform_type, value_type>::type type;
35
36 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
37 static type call(Seq& seq)
38 {
39 return seq.f(boost::fusion::at<N>(seq.seq));
40 }
41 };
42 };
43
44 template<>
45 struct at_impl<transform_view2_tag>
46 {
47 template<typename Seq, typename N>
48 struct apply
49 {
50 typedef typename Seq::transform_type F;
51 typedef detail::apply_transform_result<F> transform_type;
52 typedef typename boost::fusion::result_of::at<typename Seq::sequence1_type, N>::type value1_type;
53 typedef typename boost::fusion::result_of::at<typename Seq::sequence2_type, N>::type value2_type;
54 typedef typename mpl::apply<transform_type, value1_type, value2_type>::type type;
55
56 BOOST_CONSTEXPR BOOST_FUSION_GPU_ENABLED
57 static type call(Seq& seq)
58 {
59 return seq.f(boost::fusion::at<N>(seq.seq1), boost::fusion::at<N>(seq.seq2));
60 }
61 };
62 };
63 }
64}}
65
66#endif