summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/callable_traits/test/remove_varargs.cpp
blob: f5f91d6fc364dba316e1bb58ec0f8990f4033f00 (plain)
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
/*
Copyright Barrett Adair 2016-2017
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http ://boost.org/LICENSE_1_0.txt)
*/

#include <type_traits>
#include <functional>
#include <tuple>
#include <boost/callable_traits/remove_varargs.hpp>
#include "test.hpp"



struct foo {};

int main() {

    {
        using f      = void(foo::*)();
        using l      = void(foo::*)() LREF;
        using r      = void(foo::*)() RREF ;
        using c      = void(foo::*)() const;
        using cl     = void(foo::*)() const LREF;
        using cr     = void(foo::*)() const RREF;
        using v      = void(foo::*)() volatile;
        using vl     = void(foo::*)() volatile LREF;
        using vr     = void(foo::*)() volatile RREF;
        using cv     = void(foo::*)() const volatile;
        using cvl    = void(foo::*)() const volatile LREF;
        using cvr    = void(foo::*)() const volatile RREF;

        using va_f   = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(...);
        using va_l   = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(...) LREF;
        using va_r   = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(...) RREF ;
        using va_c   = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(...) const;
        using va_cl  = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(...) const LREF;
        using va_cr  = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(...) const RREF;
        using va_v   = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(...) volatile;
        using va_vl  = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(...) volatile LREF;
        using va_vr  = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(...) volatile RREF;
        using va_cv  = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(...) const volatile;
        using va_cvl = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(...) const volatile LREF;
        using va_cvr = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(...) const volatile RREF;

        CT_ASSERT(std::is_same<f,    TRAIT(remove_varargs, va_f)>{});
        CT_ASSERT(std::is_same<l,    TRAIT(remove_varargs, va_l)>{});
        CT_ASSERT(std::is_same<r,    TRAIT(remove_varargs, va_r)>{});
        CT_ASSERT(std::is_same<c,    TRAIT(remove_varargs, va_c)>{});
        CT_ASSERT(std::is_same<cl,   TRAIT(remove_varargs, va_cl)>{});
        CT_ASSERT(std::is_same<cr,   TRAIT(remove_varargs, va_cr)>{});
        CT_ASSERT(std::is_same<v,    TRAIT(remove_varargs, va_v)>{});
        CT_ASSERT(std::is_same<vl,   TRAIT(remove_varargs, va_vl)>{});
        CT_ASSERT(std::is_same<vr,   TRAIT(remove_varargs, va_vr)>{});
        CT_ASSERT(std::is_same<cv,   TRAIT(remove_varargs, va_cv)>{});
        CT_ASSERT(std::is_same<cvl,  TRAIT(remove_varargs, va_cvl)>{});
        CT_ASSERT(std::is_same<cvr,  TRAIT(remove_varargs, va_cvr)>{});

        CT_ASSERT(std::is_same<f,    TRAIT(remove_varargs, f)>{});
        CT_ASSERT(std::is_same<l,    TRAIT(remove_varargs, l)>{});
        CT_ASSERT(std::is_same<r,    TRAIT(remove_varargs, r)>{});
        CT_ASSERT(std::is_same<c,    TRAIT(remove_varargs, c)>{});
        CT_ASSERT(std::is_same<cl,   TRAIT(remove_varargs, cl)>{});
        CT_ASSERT(std::is_same<cr,   TRAIT(remove_varargs, cr)>{});
        CT_ASSERT(std::is_same<v,    TRAIT(remove_varargs, v)>{});
        CT_ASSERT(std::is_same<vl,   TRAIT(remove_varargs, vl)>{});
        CT_ASSERT(std::is_same<vr,   TRAIT(remove_varargs, vr)>{});
        CT_ASSERT(std::is_same<cv,   TRAIT(remove_varargs, cv)>{});
        CT_ASSERT(std::is_same<cvl,  TRAIT(remove_varargs, cvl)>{});
        CT_ASSERT(std::is_same<cvr,  TRAIT(remove_varargs, cvr)>{});
    }

    {
        using f      = void(foo::*)(int&, int&&);
        using l      = void(foo::*)(int&, int&&) LREF;
        using r      = void(foo::*)(int&, int&&) RREF ;
        using c      = void(foo::*)(int&, int&&) const;
        using cl     = void(foo::*)(int&, int&&) const LREF;
        using cr     = void(foo::*)(int&, int&&) const RREF;
        using v      = void(foo::*)(int&, int&&) volatile;
        using vl     = void(foo::*)(int&, int&&) volatile LREF;
        using vr     = void(foo::*)(int&, int&&) volatile RREF;
        using cv     = void(foo::*)(int&, int&&) const volatile;
        using cvl    = void(foo::*)(int&, int&&) const volatile LREF;
        using cvr    = void(foo::*)(int&, int&&) const volatile RREF;

        using va_f   = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int&, int&&, ...);
        using va_l   = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int&, int&&, ...) LREF;
        using va_r   = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int&, int&&, ...) RREF ;
        using va_c   = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int&, int&&, ...) const;
        using va_cl  = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int&, int&&, ...) const LREF;
        using va_cr  = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int&, int&&, ...) const RREF;
        using va_v   = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int&, int&&, ...) volatile;
        using va_vl  = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int&, int&&, ...) volatile LREF;
        using va_vr  = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int&, int&&, ...) volatile RREF;
        using va_cv  = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int&, int&&, ...) const volatile;
        using va_cvl = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int&, int&&, ...) const volatile LREF;
        using va_cvr = void(BOOST_CLBL_TRTS_DEFAULT_VARARGS_CC foo::*)(int&, int&&, ...) const volatile RREF;

        CT_ASSERT(std::is_same<f,    TRAIT(remove_varargs, va_f)>{});
        CT_ASSERT(std::is_same<l,    TRAIT(remove_varargs, va_l)>{});
        CT_ASSERT(std::is_same<r,    TRAIT(remove_varargs, va_r)>{});
        CT_ASSERT(std::is_same<c,    TRAIT(remove_varargs, va_c)>{});
        CT_ASSERT(std::is_same<cl,   TRAIT(remove_varargs, va_cl)>{});
        CT_ASSERT(std::is_same<cr,   TRAIT(remove_varargs, va_cr)>{});
        CT_ASSERT(std::is_same<v,    TRAIT(remove_varargs, va_v)>{});
        CT_ASSERT(std::is_same<vl,   TRAIT(remove_varargs, va_vl)>{});
        CT_ASSERT(std::is_same<vr,   TRAIT(remove_varargs, va_vr)>{});
        CT_ASSERT(std::is_same<cv,   TRAIT(remove_varargs, va_cv)>{});
        CT_ASSERT(std::is_same<cvl,  TRAIT(remove_varargs, va_cvl)>{});
        CT_ASSERT(std::is_same<cvr,  TRAIT(remove_varargs, va_cvr)>{});

        CT_ASSERT(std::is_same<f,    TRAIT(remove_varargs, f)>{});
        CT_ASSERT(std::is_same<l,    TRAIT(remove_varargs, l)>{});
        CT_ASSERT(std::is_same<r,    TRAIT(remove_varargs, r)>{});
        CT_ASSERT(std::is_same<c,    TRAIT(remove_varargs, c)>{});
        CT_ASSERT(std::is_same<cl,   TRAIT(remove_varargs, cl)>{});
        CT_ASSERT(std::is_same<cr,   TRAIT(remove_varargs, cr)>{});
        CT_ASSERT(std::is_same<v,    TRAIT(remove_varargs, v)>{});
        CT_ASSERT(std::is_same<vl,   TRAIT(remove_varargs, vl)>{});
        CT_ASSERT(std::is_same<vr,   TRAIT(remove_varargs, vr)>{});
        CT_ASSERT(std::is_same<cv,   TRAIT(remove_varargs, cv)>{});
        CT_ASSERT(std::is_same<cvl,  TRAIT(remove_varargs, cvl)>{});
        CT_ASSERT(std::is_same<cvr,  TRAIT(remove_varargs, cvr)>{});
    }

#ifndef BOOST_CLBL_TRTS_DISABLE_ABOMINABLE_FUNCTIONS

    {
        using f      = void();
        using l      = void() LREF;
        using r      = void() RREF ;
        using c      = void() const;
        using cl     = void() const LREF;
        using cr     = void() const RREF;
        using v      = void() volatile;
        using vl     = void() volatile LREF;
        using vr     = void() volatile RREF;
        using cv     = void() const volatile;
        using cvl    = void() const volatile LREF;
        using cvr    = void() const volatile RREF;

        using va_f   = void(...);
        using va_l   = void(...) LREF;
        using va_r   = void(...) RREF ;
        using va_c   = void(...) const;
        using va_cl  = void(...) const LREF;
        using va_cr  = void(...) const RREF;
        using va_v   = void(...) volatile;
        using va_vl  = void(...) volatile LREF;
        using va_vr  = void(...) volatile RREF;
        using va_cv  = void(...) const volatile;
        using va_cvl = void(...) const volatile LREF;
        using va_cvr = void(...) const volatile RREF;

        CT_ASSERT(std::is_same<f,    TRAIT(remove_varargs, va_f)>{});
        CT_ASSERT(std::is_same<l,    TRAIT(remove_varargs, va_l)>{});
        CT_ASSERT(std::is_same<r,    TRAIT(remove_varargs, va_r)>{});
        CT_ASSERT(std::is_same<c,    TRAIT(remove_varargs, va_c)>{});
        CT_ASSERT(std::is_same<cl,   TRAIT(remove_varargs, va_cl)>{});
        CT_ASSERT(std::is_same<cr,   TRAIT(remove_varargs, va_cr)>{});
        CT_ASSERT(std::is_same<v,    TRAIT(remove_varargs, va_v)>{});
        CT_ASSERT(std::is_same<vl,   TRAIT(remove_varargs, va_vl)>{});
        CT_ASSERT(std::is_same<vr,   TRAIT(remove_varargs, va_vr)>{});
        CT_ASSERT(std::is_same<cv,   TRAIT(remove_varargs, va_cv)>{});
        CT_ASSERT(std::is_same<cvl,  TRAIT(remove_varargs, va_cvl)>{});
        CT_ASSERT(std::is_same<cvr,  TRAIT(remove_varargs, va_cvr)>{});

        CT_ASSERT(std::is_same<f,    TRAIT(remove_varargs, f)>{});
        CT_ASSERT(std::is_same<l,    TRAIT(remove_varargs, l)>{});
        CT_ASSERT(std::is_same<r,    TRAIT(remove_varargs, r)>{});
        CT_ASSERT(std::is_same<c,    TRAIT(remove_varargs, c)>{});
        CT_ASSERT(std::is_same<cl,   TRAIT(remove_varargs, cl)>{});
        CT_ASSERT(std::is_same<cr,   TRAIT(remove_varargs, cr)>{});
        CT_ASSERT(std::is_same<v,    TRAIT(remove_varargs, v)>{});
        CT_ASSERT(std::is_same<vl,   TRAIT(remove_varargs, vl)>{});
        CT_ASSERT(std::is_same<vr,   TRAIT(remove_varargs, vr)>{});
        CT_ASSERT(std::is_same<cv,   TRAIT(remove_varargs, cv)>{});
        CT_ASSERT(std::is_same<cvl,  TRAIT(remove_varargs, cvl)>{});
        CT_ASSERT(std::is_same<cvr,  TRAIT(remove_varargs, cvr)>{});
    }

#endif //#ifndef BOOST_CLBL_TRTS_DISABLE_ABOMINABLE_FUNCTIONS

    {
        using f = void(&)();
        using va_f = void(&)(...);
        CT_ASSERT(std::is_same<f,    TRAIT(remove_varargs, va_f)>{});
    }
}