summaryrefslogtreecommitdiff
path: root/src/inc/clr_std/type_traits
blob: 090694e3209a1dd829fb4a7dd68f523c5e326d8e (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
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

//
// clr_std/utility
//
// Copy of some key Standard Template Library functionality.
// See http://msdn.microsoft.com/en-us/library/bb982077.aspx for documentation.
//

#ifdef _MSC_VER
#pragma once
#endif

#ifndef __clr_std_type_traits_h__
#define __clr_std_type_traits_h__

#ifdef USE_STL

#include <type_traits>

#else

namespace std
{
    //-----------------------------------------------------------------------------------------
    // TEMPLATE CLASS remove_const
    template<class _Ty>
    struct remove_const
    {   // remove top level const qualifier
        typedef _Ty type;
    };

    template<class _Ty>
    struct remove_const<const _Ty>
    {   // remove top level const qualifier
        typedef _Ty type;
    };

    template<class _Ty>
    struct remove_const<const _Ty[]>
    {   // remove top level const qualifier
        typedef _Ty type[];
    };

    template<class _Ty, unsigned int _Nx>
    struct remove_const<const _Ty[_Nx]>
    {   // remove top level const qualifier
        typedef _Ty type[_Nx];
    };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE CLASS remove_volatile
    template<class _Ty>
    struct remove_volatile
    {   // remove top level volatile qualifier
        typedef _Ty type;
    };

    template<class _Ty>
    struct remove_volatile<volatile _Ty>
    {   // remove top level volatile qualifier
        typedef _Ty type;
    };

    template<class _Ty>
    struct remove_volatile<volatile _Ty[]>
    {   // remove top level volatile qualifier
        typedef _Ty type[];
    };

    template<class _Ty, unsigned int _Nx>
    struct remove_volatile<volatile _Ty[_Nx]>
    {   // remove top level volatile qualifier
        typedef _Ty type[_Nx];
    };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE CLASS remove_cv
    template<class _Ty>
    struct remove_cv
    {   // remove top level const and volatile qualifiers
        typedef typename remove_const<typename remove_volatile<_Ty>::type>::type type;
    };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE remove_reference
    template<class T>
    struct remove_reference
    {   // remove reference
        typedef T type;
    };

    template<class T>
    struct remove_reference<T&>
    {   // remove reference
        typedef T type;
    };

    template<class T>
    struct remove_reference<T&&>
    {   // remove rvalue reference
        typedef T type;
    };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE remove_pointer
    template<class T>
    struct remove_pointer
    {   // remove pointer
        typedef T type;
    };

    template<class T>
    struct remove_pointer<T*>
    {   // remove pointer
        typedef T type;
    };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE FUNCTION identity
    template<class T>
    struct identity
    {   // map T to type unchanged
        typedef T type;

        inline
        const T& operator()(const T& left) const
        {   // apply identity operator to operand
            return (left);
        }
    };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE CLASS integral_constant
    template<class _Ty, _Ty _Val>
    struct integral_constant
    {   // convenient template for integral constant types
        static const _Ty value = _Val;

        typedef _Ty value_type;
        typedef integral_constant<_Ty, _Val> type;
    };

    typedef integral_constant<bool, true> true_type;
    typedef integral_constant<bool, false> false_type;

    // TEMPLATE CLASS _Cat_base
    template<bool>
    struct _Cat_base
        : false_type
    {    // base class for type predicates
    };

    template<>
    struct _Cat_base<true>
        : true_type
    {    // base class for type predicates
    };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE CLASS enable_if
    template<bool _Test, class _Type = void>
    struct enable_if
    {   // type is undefined for assumed !_Test
    };

    template<class _Type>
    struct enable_if<true, _Type>
    {   // type is _Type for _Test
        typedef _Type type;
    };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE CLASS conditional
    template<bool _Test, class _Ty1, class _Ty2>
    struct conditional
    {   // type is _Ty2 for assumed !_Test
        typedef _Ty2 type;
    };

    template<class _Ty1, class _Ty2>
    struct conditional<true, _Ty1, _Ty2>
    {   // type is _Ty1 for _Test
        typedef _Ty1 type;
    };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE CLASS is_lvalue_reference
    template<class _Ty>
    struct is_lvalue_reference
        : false_type
    {   // determine whether _Ty is an lvalue reference
    };

    template<class _Ty>
    struct is_lvalue_reference<_Ty&>
        : true_type
    {   // determine whether _Ty is an lvalue reference
    };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE CLASS is_rvalue_reference
    template<class _Ty>
    struct is_rvalue_reference
        : false_type
    {   // determine whether _Ty is an rvalue reference
    };

    template<class _Ty>
    struct is_rvalue_reference<_Ty&&>
        : true_type
    {   // determine whether _Ty is an rvalue reference
    };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE CLASS is_reference
    template<class _Ty>
    struct is_reference
        : conditional<
            is_lvalue_reference<_Ty>::value || is_rvalue_reference<_Ty>::value,
            true_type,
            false_type>::type
    {   // determine whether _Ty is a reference
    };

    // TEMPLATE CLASS is_pointer
    template<class _Ty>
    struct is_pointer
        : false_type
    {   // determine whether _Ty is a pointer
    };

    template<class _Ty>
    struct is_pointer<_Ty *>
        : true_type
    {   // determine whether _Ty is a pointer
    };

    // TEMPLATE CLASS _Is_integral
    template<class _Ty>
    struct _Is_integral
        : false_type
    {    // determine whether _Ty is integral
    };

    template<>
    struct _Is_integral<bool>
        : true_type
    {    // determine whether _Ty is integral
    };

    template<>
    struct _Is_integral<char>
        : true_type
    {    // determine whether _Ty is integral
    };

    template<>
    struct _Is_integral<unsigned char>
        : true_type
    {    // determine whether _Ty is integral
    };

    template<>
    struct _Is_integral<signed char>
        : true_type
    {    // determine whether _Ty is integral
    };

 #ifdef _NATIVE_WCHAR_T_DEFINED
    template<>
    struct _Is_integral<wchar_t>
        : true_type
    {    // determine whether _Ty is integral
    };
 #endif /* _NATIVE_WCHAR_T_DEFINED */

    template<>
    struct _Is_integral<unsigned short>
        : true_type
    {    // determine whether _Ty is integral
    };

    template<>
    struct _Is_integral<signed short>
        : true_type
    {    // determine whether _Ty is integral
    };

    template<>
    struct _Is_integral<unsigned int>
        : true_type
    {    // determine whether _Ty is integral
    };

    template<>
    struct _Is_integral<signed int>
        : true_type
    {    // determine whether _Ty is integral
    };

// On Unix 'long' is a 64-bit type (same as __int64) and the following two definitions
// conflict with _Is_integral<unsigned __int64> and _Is_integral<signed __int64>.
#ifndef PLATFORM_UNIX
    template<>
    struct _Is_integral<unsigned long>
        : true_type
    {    // determine whether _Ty is integral
    };

    template<>
    struct _Is_integral<signed long>
        : true_type
    {    // determine whether _Ty is integral
    };
#endif /* PLATFORM_UNIX */

 #if _HAS_CHAR16_T_LANGUAGE_SUPPORT
    template<>
    struct _Is_integral<char16_t>
        : true_type
    {    // determine whether _Ty is integral
    };

    template<>
    struct _Is_integral<char32_t>
        : true_type
    {    // determine whether _Ty is integral
    };
 #endif /* _HAS_CHAR16_T_LANGUAGE_SUPPORT */

    template<>
    struct _Is_integral<unsigned __int64>
        : true_type
    {    // determine whether _Ty is integral
    };

    template<>
    struct _Is_integral<signed __int64>
        : true_type
    {    // determine whether _Ty is integral
    };

    // TEMPLATE CLASS is_integral
    template<class _Ty>
    struct is_integral
        : _Is_integral<typename remove_cv<_Ty>::type>
    {    // determine whether _Ty is integral
    };

    // TEMPLATE CLASS _Is_floating_point
    template<class _Ty>
    struct _Is_floating_point
        : false_type
    {    // determine whether _Ty is floating point
    };

    template<>
    struct _Is_floating_point<float>
        : true_type
    {    // determine whether _Ty is floating point
    };

    template<>
    struct _Is_floating_point<double>
        : true_type
    {    // determine whether _Ty is floating point
    };

// In PAL, we define long as int and so this becomes int double,
// which is a nonsense
#ifndef FEATURE_PAL  
    template<>
    struct _Is_floating_point<long double>
        : true_type
    {    // determine whether _Ty is floating point
    };
#endif

    // TEMPLATE CLASS is_floating_point
    template<class _Ty>
    struct is_floating_point
        : _Is_floating_point<typename remove_cv<_Ty>::type>
    {    // determine whether _Ty is floating point
    };

    // TEMPLATE CLASS is_arithmetic
    template<class _Ty>
    struct is_arithmetic
    : _Cat_base<is_integral<_Ty>::value
        || is_floating_point<_Ty>::value>
    {    // determine whether _Ty is an arithmetic type
    };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE CLASS is_signed
    template <typename T>
    struct is_signed : conditional<
        static_cast<typename remove_const<T>::type>(-1) < 0, true_type, false_type>::type {};

    //-----------------------------------------------------------------------------------------
    // TEMPLATE CLASS is_same
    template<class T1, class T2>
    struct is_same : false_type { };

    //-----------------------------------------------------------------------------------------
    template<class T1>
    struct is_same<T1, T1> : true_type { };

    //-----------------------------------------------------------------------------------------
    // TEMPLATE CLASS is_base_of
#ifdef _MSC_VER

    template <typename TBase, typename TDerived>
    struct is_base_of :
        conditional<__is_base_of( TBase, TDerived), true_type, false_type>::type {};

#else
    namespace detail
    {
        //-------------------------------------------------------------------------------------
        // Helper types Small and Big - guarantee that sizeof(Small) < sizeof(Big)
        //

        template <class T, class U>
        struct conversion_helper
        {
            typedef char Small;
            struct Big { char dummy[2]; };
            static Big   Test(...);
            static Small Test(U);
            static T MakeT();
        };

        //-------------------------------------------------------------------------------------
        // class template conversion
        // Figures out the conversion relationships between two types
        // Invocations (T and U are types):
        // a) conversion<T, U>::exists
        // returns (at compile time) true if there is an implicit conversion from T
        // to U (example: Derived to Base)
        // b) conversion<T, U>::exists2Way
        // returns (at compile time) true if there are both conversions from T
        // to U and from U to T (example: int to char and back)
        // c) conversion<T, U>::sameType
        // returns (at compile time) true if T and U represent the same type
        //
        // NOTE: might not work if T and U are in a private inheritance hierarchy.
        //

        template <class T, class U>
        struct conversion
        {
            typedef detail::conversion_helper<T, U> H;
            static const bool exists = sizeof(typename H::Small) == sizeof((H::Test(H::MakeT())));
            static const bool exists2Way = exists && conversion<U, T>::exists;
            static const bool sameType = false;
        };

        template <class T>
        struct conversion<T, T>    
        {
            static const bool exists = true;
            static const bool exists2Way = true;
            static const bool sameType = true;
        };

        template <class T>
        struct conversion<void, T>    
        {
            static const bool exists = false;
            static const bool exists2Way = false;
            static const bool sameType = false;
        };

        template <class T>
        struct conversion<T, void>    
        {
            static const bool exists = false;
            static const bool exists2Way = false;
            static const bool sameType = false;
        };

        template <>
        struct conversion<void, void>    
        {
            static const bool exists = true;
            static const bool exists2Way = true;
            static const bool sameType = true;
        };
    } // detail

    // Note that we need to compare pointer types here, since conversion of types by-value
    // just tells us whether or not an implicit conversion constructor exists. We handle
    // type parameters that are already pointers specially; see below.
    template <typename TBase, typename TDerived>
    struct is_base_of :
        conditional<detail::conversion<TDerived *, TBase *>::exists, true_type, false_type>::type {};

    // Specialization to handle type parameters that are already pointers.
    template <typename TBase, typename TDerived>
    struct is_base_of<TBase *, TDerived *> :
        conditional<detail::conversion<TDerived *, TBase *>::exists, true_type, false_type>::type {};

    // Specialization to handle invalid mixing of pointer types.
    template <typename TBase, typename TDerived>
    struct is_base_of<TBase *, TDerived> :
        false_type {};

    // Specialization to handle invalid mixing of pointer types.
    template <typename TBase, typename TDerived>
    struct is_base_of<TBase, TDerived *> :
        false_type {};

#endif

    // Use to determine if a template type parameter is a string.
    template <typename T>
    struct is_cstr
        : public std::false_type
    {};

    template <typename T>
    struct is_cstr< T* >
        : public std::conditional<
            std::is_same<typename std::remove_cv<T>::type, char>::value ||
                std::is_same<typename std::remove_cv<T>::type, wchar_t>::value,
            std::true_type,
            std::false_type>::type
        
    { };

} // namespace std

#endif // !USE_STL

#define REM_CONST(T)    typename std::remove_const< T >::type
#define REM_CV(T)       typename std::remove_cv< T >::type
#define REM_REF(T)      typename std::remove_reference< T >::type

#define REF_T(T)        REM_REF(T) &
#define REF_CT(T)       REM_REF(REM_CONST(T)) const &

#endif // __clr_std_type_traits_h__

// Help the VIM editor figure out what kind of file this no-extension file is.
// vim: filetype=cpp