1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
/*=============================================================================
Copyright (c) 2001-2007 Joel de Guzman
Copyright (c) 2004 Daniel Wallin
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)
==============================================================================*/
#ifndef PHOENIX_SCOPE_LET_HPP
#define PHOENIX_SCOPE_LET_HPP
#include <boost/spirit/home/phoenix/core/limits.hpp>
#include <boost/spirit/home/phoenix/core/composite.hpp>
#include <boost/spirit/home/phoenix/scope/scoped_environment.hpp>
#include <boost/spirit/home/phoenix/scope/detail/local_variable.hpp>
#include <boost/spirit/home/phoenix/detail/local_reference.hpp>
#include <boost/spirit/home/phoenix/core/actor.hpp>
#include <boost/fusion/include/transform.hpp>
#include <boost/fusion/include/as_vector.hpp>
#include <boost/mpl/eval_if.hpp>
#include <boost/mpl/bool.hpp>
namespace boost { namespace phoenix
{
template <typename Base, typename Vars, typename Map>
struct let_actor : Base
{
typedef typename
mpl::fold<
Vars
, mpl::false_
, detail::compute_no_nullary
>::type
no_nullary;
template <typename Env>
struct result
{
typedef typename
fusion::result_of::as_vector<
typename fusion::result_of::transform<
Vars
, detail::initialize_local<Env>
>::type
>::type
locals_type;
typedef typename Base::template
result<scoped_environment<Env, Env, locals_type, Map> >::type
result_type;
typedef typename
detail::unwrap_local_reference<result_type>::type
type;
};
let_actor(Base const& base, Vars const& vars)
: Base(base), vars(vars) {}
template <typename Env>
typename result<Env>::type
eval(Env const& env) const
{
typedef typename
fusion::result_of::as_vector<
typename fusion::result_of::transform<
Vars
, detail::initialize_local<Env>
>::type
>::type
locals_type;
locals_type locals =
fusion::as_vector(
fusion::transform(
vars
, detail::initialize_local<Env>(env)));
typedef typename result<Env>::type RT;
return RT(Base::eval(
scoped_environment<Env, Env, locals_type, Map>(
env
, env
, locals)));
}
Vars vars;
};
template <typename Vars, typename Map>
struct let_actor_gen
{
template <typename Base>
actor<let_actor<Base, Vars, Map> > const
operator[](actor<Base> const& base) const
{
return let_actor<Base, Vars, Map>(base, vars);
}
let_actor_gen(Vars const& vars)
: vars(vars) {}
Vars vars;
};
template <typename Key>
struct local_variable; // forward
struct assign_eval; // forward
struct let_gen
{
template <typename K0, typename V0>
let_actor_gen<
fusion::vector<V0>
, detail::map_local_index_to_tuple<K0>
>
operator()(
actor<composite<assign_eval, fusion::vector<local_variable<K0>, V0> > > const& a0
) const
{
return fusion::vector<V0>(fusion::at_c<1>(a0));
}
template <typename K0, typename K1, typename V0, typename V1>
let_actor_gen<
fusion::vector<V0, V1>
, detail::map_local_index_to_tuple<K0, K1>
>
operator()(
actor<composite<assign_eval, fusion::vector<local_variable<K0>, V0> > > const& a0
, actor<composite<assign_eval, fusion::vector<local_variable<K1>, V1> > > const& a1
) const
{
return fusion::vector<V0, V1>(fusion::at_c<1>(a0), fusion::at_c<1>(a1));
}
// Bring in the rest...
#define PHOENIX_LOCAL_GEN_NAME let_actor_gen
#include <boost/spirit/home/phoenix/scope/detail/local_gen.hpp>
#undef PHOENIX_LOCAL_GEN_NAME
};
let_gen const let = let_gen();
}}
#endif
|