File: evaluate_category.hpp

package info (click to toggle)
boost1.90 1.90.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 593,120 kB
  • sloc: cpp: 4,190,908; xml: 196,648; python: 34,618; ansic: 23,145; asm: 5,468; sh: 3,774; makefile: 1,161; perl: 1,020; sql: 728; ruby: 676; yacc: 478; java: 77; lisp: 24; csh: 6
file content (290 lines) | stat: -rw-r--r-- 6,863 bytes parent folder | download | duplicates (15)
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
// Copyright Cromwell D. Enage 2017.
// 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 LIBS_PARAMETER_TEST_EVALUTE_CATEGORY_HPP
#define LIBS_PARAMETER_TEST_EVALUTE_CATEGORY_HPP

namespace test {

    enum invoked
    {
        passed_by_lvalue_reference_to_const
      , passed_by_lvalue_reference
      , passed_by_rvalue_reference_to_const
      , passed_by_rvalue_reference
    };

    float rvalue_float()
    {
        return 0.0f;
    }

    float const rvalue_const_float()
    {
        return 0.0f;
    }

    float& lvalue_float()
    {
        static float lfloat = 0.0f;
        return lfloat;
    }

    float const& lvalue_const_float()
    {
        static float const clfloat = 0.0f;
        return clfloat;
    }

    char const* rvalue_char_ptr()
    {
        return "foo";
    }

    char const* const rvalue_const_char_ptr()
    {
        return "foo";
    }

    char const*& lvalue_char_ptr()
    {
        static char const* larr = "foo";
        return larr;
    }

    char const* const& lvalue_const_char_ptr()
    {
        static char const* const clarr = "foo";
        return clarr;
    }
} // namespace test

#include <string>

namespace test {

    std::string rvalue_str()
    {
        return std::string("bar");
    }

    std::string const rvalue_const_str()
    {
        return std::string("bar");
    }

    std::string& lvalue_str()
    {
        static std::string lstr = std::string("bar");
        return lstr;
    }

    std::string const& lvalue_const_str()
    {
        static std::string const clstr = std::string("bar");
        return clstr;
    }
} // namespace test

#include <bitset>

namespace test {

    template <std::size_t N>
    std::bitset<N + 1> rvalue_bitset()
    {
        return std::bitset<N + 1>();
    }

    template <std::size_t N>
    std::bitset<N + 1> const rvalue_const_bitset()
    {
        return std::bitset<N + 1>();
    }

    template <std::size_t N>
    std::bitset<N + 1>& lvalue_bitset()
    {
        static std::bitset<N + 1> lset = std::bitset<N + 1>();
        return lset;
    }

    template <std::size_t N>
    std::bitset<N + 1> const& lvalue_const_bitset()
    {
        static std::bitset<N + 1> const clset = std::bitset<N + 1>();
        return clset;
    }

    template <std::size_t N>
    struct lvalue_bitset_function
    {
        typedef std::bitset<N + 1>& result_type;

        result_type operator()() const
        {
            return test::lvalue_bitset<N>();
        }
    };

    template <std::size_t N>
    struct lvalue_const_bitset_function
    {
        typedef std::bitset<N + 1> const& result_type;

        result_type operator()() const
        {
            return test::lvalue_const_bitset<N>();
        }
    };

    template <std::size_t N>
    struct rvalue_bitset_function
    {
        typedef std::bitset<N + 1> result_type;

        result_type operator()() const
        {
            return test::rvalue_bitset<N>();
        }
    };

    template <std::size_t N>
    struct rvalue_const_bitset_function
    {
        typedef std::bitset<N + 1> const result_type;

        result_type operator()() const
        {
            return test::rvalue_const_bitset<N>();
        }
    };
} // namespace test

#include <boost/parameter/config.hpp>

namespace test {

    template <typename T>
    struct A
    {
        static test::invoked evaluate_category(T const&)
        {
            return test::passed_by_lvalue_reference_to_const;
        }

        static test::invoked evaluate_category(T&)
        {
            return test::passed_by_lvalue_reference;
        }

#if defined(BOOST_PARAMETER_HAS_PERFECT_FORWARDING)
        static test::invoked evaluate_category(T const&&)
        {
            return test::passed_by_rvalue_reference_to_const;
        }

        static test::invoked evaluate_category(T&&)
        {
            return test::passed_by_rvalue_reference;
        }
#endif
    };

    struct U
    {
        template <std::size_t N>
        static test::invoked evaluate_category(std::bitset<N + 1> const&)
        {
            return test::passed_by_lvalue_reference_to_const;
        }

        template <std::size_t N>
        static test::invoked evaluate_category(std::bitset<N + 1>&)
        {
            return test::passed_by_lvalue_reference;
        }

#if defined(BOOST_PARAMETER_HAS_PERFECT_FORWARDING)
        template <std::size_t N>
        static test::invoked evaluate_category(std::bitset<N + 1> const&&)
        {
            return test::passed_by_rvalue_reference_to_const;
        }

        template <std::size_t N>
        static test::invoked evaluate_category(std::bitset<N + 1>&&)
        {
            return test::passed_by_rvalue_reference;
        }
#endif
    };
} // namespace test

#include <boost/parameter/value_type.hpp>

#if defined(BOOST_PARAMETER_CAN_USE_MP11)
#include <type_traits>
#else
#include <boost/mpl/bool.hpp>
#include <boost/mpl/if.hpp>
#include <boost/type_traits/is_convertible.hpp>
#include <boost/type_traits/remove_const.hpp>
#include <boost/type_traits/remove_pointer.hpp>
#endif

namespace test {

    template <typename CharConstPtrParamTag>
    struct string_predicate
    {
        template <typename Arg, typename Args>
#if defined(BOOST_PARAMETER_CAN_USE_MP11)
        using fn = std::is_convertible<
            Arg
          , std::basic_string<
                typename std::remove_const<
                    typename std::remove_pointer<
                        typename boost::parameter::value_type<
                            Args
                          , CharConstPtrParamTag
#if !defined(LIBS_PARAMETER_TEST_COMPILE_FAILURE)
                          , char const*
#endif
                        >::type
                    >::type
                >::type
            >
        >;
#else   // !defined(BOOST_PARAMETER_CAN_USE_MP11)
        struct apply
          : boost::mpl::if_<
                boost::is_convertible<
                    Arg
                  , std::basic_string<
                        typename boost::remove_const<
                            typename boost::remove_pointer<
                                typename boost::parameter::value_type<
                                    Args
                                  , CharConstPtrParamTag
#if !defined(LIBS_PARAMETER_TEST_COMPILE_FAILURE)
                                  , char const*
#endif
                                >::type
                            >::type
                        >::type
                    >
                >
              , boost::mpl::true_
              , boost::mpl::false_
            >
        {
        };
#endif  // BOOST_PARAMETER_CAN_USE_MP11
    };
} // namespace test

#endif  // include guard