aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/tr1/type_traits
blob: 12609dd41b47e7b7c9f386d99e9dde80935300c5 (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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
// TR1 type_traits -*- C++ -*-

// Copyright (C) 2004, 2005 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library.  This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 2, or (at your option)
// any later version.

// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING.  If not, write to the Free
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
// USA.

/** @file 
 *  This is a TR1 C++ Library header. 
 */

#ifndef _TYPE_TRAITS
#define _TYPE_TRAITS 1

#include <bits/c++config.h>
#include <tr1/type_traits_fwd.h>

// namespace std::tr1
namespace std
{
namespace tr1
{
  // For use in is_enum, is_abstract and elsewhere.
  struct __sfinae_types
  {
    typedef char __one;
    typedef struct { char __arr[2]; } __two;
  };

  template<typename _From, typename _To>
    struct __conv_helper
    : public __sfinae_types
    {
    private:
      static __one __test(_To);
      static __two __test(...);
      static _From __makeFrom();
    
    public:
      static const bool __value = sizeof(__test(__makeFrom())) == 1;
    };

#define _DEFINE_SPEC_BODY(_Value)                                    \
    : public integral_constant<bool, _Value> { };

#define _DEFINE_SPEC_0_HELPER(_Spec, _Value)                         \
  template<>                                                         \
    struct _Spec                                                     \
    _DEFINE_SPEC_BODY(_Value)

#define _DEFINE_SPEC_1_HELPER(_Spec, _Value)                         \
  template<typename _Tp>                                             \
    struct _Spec                                                     \
    _DEFINE_SPEC_BODY(_Value)
      
#define _DEFINE_SPEC_2_HELPER(_Spec, _Value)                         \
  template<typename _Tp, typename _Cp>                               \
    struct _Spec                                                     \
    _DEFINE_SPEC_BODY(_Value)

#define _DEFINE_SPEC(_Order, _Trait, _Type, _Value)                  \
  _DEFINE_SPEC_##_Order##_HELPER(_Trait<_Type>, _Value)              \
  _DEFINE_SPEC_##_Order##_HELPER(_Trait<_Type const>, _Value)        \
  _DEFINE_SPEC_##_Order##_HELPER(_Trait<_Type volatile>, _Value)     \
  _DEFINE_SPEC_##_Order##_HELPER(_Trait<_Type const volatile>, _Value)

  /// @brief  helper classes [4.3].
  template<typename _Tp, _Tp __v>
    struct integral_constant
    {
      static const _Tp                      value = __v;
      typedef _Tp                           value_type;
      typedef integral_constant<_Tp, __v>   type;
    };
  typedef integral_constant<bool, true>     true_type;
  typedef integral_constant<bool, false>    false_type;

  /// @brief  primary type categories [4.5.1].
  template<typename>
    struct is_void
    : public false_type { };
  _DEFINE_SPEC(0, is_void, void, true)

  template<typename>
    struct is_integral
    : public false_type { };
  _DEFINE_SPEC(0, is_integral, bool, true)
  _DEFINE_SPEC(0, is_integral, char, true)
  _DEFINE_SPEC(0, is_integral, signed char, true)
  _DEFINE_SPEC(0, is_integral, unsigned char, true)
#ifdef _GLIBCXX_USE_WCHAR_T
  _DEFINE_SPEC(0, is_integral, wchar_t, true)
#endif
  _DEFINE_SPEC(0, is_integral, short, true)
  _DEFINE_SPEC(0, is_integral, unsigned short, true)
  _DEFINE_SPEC(0, is_integral, int, true)
  _DEFINE_SPEC(0, is_integral, unsigned int, true)
  _DEFINE_SPEC(0, is_integral, long, true)
  _DEFINE_SPEC(0, is_integral, unsigned long, true)
  _DEFINE_SPEC(0, is_integral, long long, true)
  _DEFINE_SPEC(0, is_integral, unsigned long long, true)

  template<typename>
    struct is_floating_point
    : public false_type { };
  _DEFINE_SPEC(0, is_floating_point, float, true)
  _DEFINE_SPEC(0, is_floating_point, double, true)
  _DEFINE_SPEC(0, is_floating_point, long double, true)

  template<typename>
    struct is_array
    : public false_type { };

  template<typename _Tp, std::size_t _Size>
    struct is_array<_Tp[_Size]>
    : public true_type { };

  template<typename _Tp>
    struct is_array<_Tp[]>
    : public true_type { };

  template<typename>
    struct is_pointer
    : public false_type { };
  _DEFINE_SPEC(1, is_pointer, _Tp*, true)
 
  template<typename>
    struct is_reference
    : public false_type { };

  template<typename _Tp>
    struct is_reference<_Tp&>
    : public true_type { };

  template<typename>
    struct is_member_object_pointer
    : public false_type { };
  _DEFINE_SPEC(2, is_member_object_pointer, _Tp _Cp::*,
	       !is_function<_Tp>::value)

  // Due to c++/19076, for the time being we cannot use the correct, neat
  // implementation :-(
  //
  // template<typename>
  //   struct is_member_function_pointer
  //   : public false_type { };
  // _DEFINE_SPEC(2, is_member_function_pointer, _Tp _Cp::*,
  //	          is_function<_Tp>::value)
  //
  // Temporary workaround for member functions with up to 15 arguments:
  template<typename>
    struct __is_mfp_helper
    { static const bool __value = false; };

  template<typename _Rt, typename _Cp>
    struct __is_mfp_helper<_Rt (_Cp::*) ()>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp>
    struct __is_mfp_helper<_Rt (_Cp::*) (...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8, typename _A9>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, _A9)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8, typename _A9>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, _A9, ...)>
    { static const bool __value = true; };
  
  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8, typename _A9, typename _A10>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, _A9, _A10)>
    { static const bool __value = true; };
  
  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8, typename _A9, typename _A10>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, _A9, _A10, ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8, typename _A9, typename _A10, typename _A11>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, _A9, _A10, _A11)>
    { static const bool __value = true; };
  
  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8, typename _A9, typename _A10, typename _A11>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, _A9, _A10, _A11, ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8, typename _A9, typename _A10, typename _A11,
	   typename _A12>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, _A9, _A10, _A11, _A12)>
    { static const bool __value = true; };
  
  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8, typename _A9, typename _A10, typename _A11,
	   typename _A12>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, _A9, _A10, _A11, _A12, ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8, typename _A9, typename _A10, typename _A11,
	   typename _A12, typename _A13>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, _A9, _A10, _A11, _A12,
					 _A13)>
    { static const bool __value = true; };
  
  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8, typename _A9, typename _A10, typename _A11,
	   typename _A12, typename _A13>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, _A9, _A10, _A11, _A12,
					 _A13, ...)>
    { static const bool __value = true; };

  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8, typename _A9, typename _A10, typename _A11,
	   typename _A12, typename _A13, typename _A14>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, _A9, _A10, _A11, _A12,
					 _A13, _A14)>
    { static const bool __value = true; };
  
  template<typename _Rt, typename _Cp, typename _A0, typename _A1, typename _A2,
	   typename _A3, typename _A4, typename _A5, typename _A6, typename _A7,
	   typename _A8, typename _A9, typename _A10, typename _A11,
	   typename _A12, typename _A13, typename _A14>
    struct __is_mfp_helper<_Rt (_Cp::*) (_A0, _A1, _A2, _A3, _A4, _A5, _A6,
					 _A7, _A8, _A9, _A10, _A11, _A12,
					 _A13, _A14, ...)>
    { static const bool __value = true; };

  template<typename _Tp>
    struct is_member_function_pointer
    : public integral_constant<bool, (__is_mfp_helper<typename
				      remove_cv<_Tp>::type>::__value)>
    { };

  template<typename _Tp, bool = (is_fundamental<_Tp>::value
				 || is_array<_Tp>::value
				 || is_pointer<_Tp>::value
				 || is_reference<_Tp>::value
				 || is_member_pointer<_Tp>::value
				 || is_function<_Tp>::value)>
    struct __is_enum_helper
    : public __sfinae_types
    {
    private:
      static __one __test(bool);
      static __one __test(char);
      static __one __test(signed char);
      static __one __test(unsigned char);
#ifdef _GLIBCXX_USE_WCHAR_T
      static __one __test(wchar_t);
#endif
      static __one __test(short);
      static __one __test(unsigned short);
      static __one __test(int);
      static __one __test(unsigned int);
      static __one __test(long);
      static __one __test(unsigned long);
      static __one __test(long long);
      static __one __test(unsigned long long);
      static __two __test(...);

      struct __convert
      { operator _Tp() const; };

    public:
      static const bool __value = sizeof(__test(__convert())) == 1;
    };

  template<typename _Tp>
    struct __is_enum_helper<_Tp, true>
    { static const bool __value = false; };

  template<typename _Tp>
    struct is_enum
    : public integral_constant<bool, __is_enum_helper<_Tp>::__value> { };

  template<typename _Tp, bool = is_void<_Tp>::value>
    struct __is_function_helper
    {
      static const bool __value = (__conv_helper<typename
				   add_reference<_Tp>::type, typename
				   add_pointer<_Tp>::type>::__value);
    };

  template<typename _Tp>
    struct __is_function_helper<_Tp, true>
    { static const bool __value = false; };

  template<typename _Tp>
    struct is_function
    : public integral_constant<bool, __is_function_helper<_Tp>::__value>
    { };

  /// @brief  composite type traits [4.5.2].
  template<typename _Tp>
    struct is_arithmetic
    : public integral_constant<bool, (is_integral<_Tp>::value
				      || is_floating_point<_Tp>::value)>
    { };

  template<typename _Tp>
    struct is_fundamental
    : public integral_constant<bool, (is_arithmetic<_Tp>::value
				      || is_void<_Tp>::value)>
    { };

  template<typename _Tp>
    struct is_object
    : public integral_constant<bool, !(is_function<_Tp>::value
				       || is_reference<_Tp>::value
				       || is_void<_Tp>::value)>
    { };

  template<typename _Tp>
    struct is_scalar
    : public integral_constant<bool, (is_arithmetic<_Tp>::value
				      || is_enum<_Tp>::value
				      || is_pointer<_Tp>::value
				      || is_member_pointer<_Tp>::value)>
    { };

  template<typename _Tp>
    struct is_compound
    : public integral_constant<bool, !is_fundamental<_Tp>::value> { };

  template<typename _Tp>
    struct is_member_pointer
    : public integral_constant<bool,
			       (is_member_object_pointer<_Tp>::value
				|| is_member_function_pointer<_Tp>::value)>
    { };
  
  /// @brief  type properties [4.5.3].
  template<typename>
    struct is_const
    : public false_type { };

  template<typename _Tp>
    struct is_const<_Tp const>
    : public true_type { };
  
  template<typename>
    struct is_volatile
    : public false_type { };

  template<typename _Tp>
    struct is_volatile<_Tp volatile>
    : public true_type { };

  template<typename _Tp>
    struct is_pod
    : public integral_constant<bool, (is_void<_Tp>::value
				      || is_scalar<typename
				      remove_all_extents<_Tp>::type>::value)>
    { };

  template<typename>
    struct __is_empty_helper_1
    { };

  template<typename _Tp>
    struct __is_empty_helper_2
    : public _Tp { };

  // Unfortunately, without compiler support we cannot tell union from
  // class types, and is_empty doesn't work at all with the former. 
  template<typename _Tp, bool = (is_fundamental<_Tp>::value
				 || is_array<_Tp>::value
				 || is_pointer<_Tp>::value
				 || is_reference<_Tp>::value
				 || is_member_pointer<_Tp>::value
				 || is_enum<_Tp>::value
				 || is_function<_Tp>::value)>
    struct __is_empty_helper
    { static const bool __value = (sizeof(__is_empty_helper_1<_Tp>)
				   == sizeof(__is_empty_helper_2<_Tp>)); };

  template<typename _Tp>
    struct __is_empty_helper<_Tp, true>
    { static const bool __value = false; };

  template<typename _Tp>
    struct is_empty
    : public integral_constant<bool, __is_empty_helper<_Tp>::__value>
    { };

  // Exploit the resolution DR core/337.
  template<typename _Tp, bool = !is_object<_Tp>::value>
    struct __is_abstract_helper
    : public __sfinae_types
    {
    private:
      template<typename>
        static __one __test(...);
      template<typename _Up>
        static __two __test(_Up(*)[1]);
    
    public:
      static const bool __value = sizeof(__test<_Tp>(0)) == 1;
    };
  
  template<typename _Tp>
    struct __is_abstract_helper<_Tp, true>
    { static const bool __value = false; };

  template<typename _Tp>
    struct is_abstract
    : public integral_constant<bool, __is_abstract_helper<_Tp>::__value> { };

  template<typename _Tp>
    struct has_trivial_constructor
    : public integral_constant<bool, is_pod<_Tp>::value> { };

  template<typename _Tp>
    struct has_trivial_copy
    : public integral_constant<bool, (is_pod<_Tp>::value 
				      && !is_volatile<_Tp>::value)> { };

  template<typename _Tp>
    struct has_trivial_assign
    : public integral_constant<bool, (is_pod<_Tp>::value
				      && !is_const<_Tp>::value
				      && !is_volatile<_Tp>::value)> { };

  template<typename _Tp>
    struct has_trivial_destructor
    : public integral_constant<bool, is_pod<_Tp>::value> { };

  template<typename _Tp>
    struct has_nothrow_constructor
    : public integral_constant<bool, is_pod<_Tp>::value> { };

  template<typename _Tp>
    struct has_nothrow_copy
    : public integral_constant<bool, (is_pod<_Tp>::value 
				      && !is_volatile<_Tp>::value)> { };

  template<typename _Tp>
    struct has_nothrow_assign
    : public integral_constant<bool, (is_pod<_Tp>::value
				      && !is_const<_Tp>::value
				      && !is_volatile<_Tp>::value)> { };

  template<typename>
    struct has_virtual_destructor
    : public false_type { };

  template<typename>
    struct is_signed
    : public false_type { };
  _DEFINE_SPEC(0, is_signed, signed char, true)
  _DEFINE_SPEC(0, is_signed, short, true)
  _DEFINE_SPEC(0, is_signed, int, true)
  _DEFINE_SPEC(0, is_signed, long, true)
  _DEFINE_SPEC(0, is_signed, long long, true)

  template<typename>
    struct is_unsigned
    : public false_type { };
  _DEFINE_SPEC(0, is_unsigned, unsigned char, true)
  _DEFINE_SPEC(0, is_unsigned, unsigned short, true)
  _DEFINE_SPEC(0, is_unsigned, unsigned int, true)
  _DEFINE_SPEC(0, is_unsigned, unsigned long, true)
  _DEFINE_SPEC(0, is_unsigned, unsigned long long, true)

  template<typename _Tp>
    struct alignment_of
    : public integral_constant<std::size_t, __alignof__(_Tp)> { };
  
  template<typename>
    struct rank
    : public integral_constant<std::size_t, 0> { };
   
  template<typename _Tp, std::size_t _Size>
    struct rank<_Tp[_Size]>
    : public integral_constant<std::size_t, 1 + rank<_Tp>::value> { };

  template<typename _Tp>
    struct rank<_Tp[]>
    : public integral_constant<std::size_t, 1 + rank<_Tp>::value> { };
   
  template<typename, unsigned>
    struct extent
    : public integral_constant<std::size_t, 0> { };
  
  template<typename _Tp, unsigned _Uint, std::size_t _Size>
    struct extent<_Tp[_Size], _Uint>
    : public integral_constant<std::size_t,
			       _Uint == 0 ? _Size : extent<_Tp,
							   _Uint - 1>::value>
    { };

  template<typename _Tp, unsigned _Uint>
    struct extent<_Tp[], _Uint>
    : public integral_constant<std::size_t,
			       _Uint == 0 ? 0 : extent<_Tp,
						       _Uint - 1>::value>
    { };
  
  /// @brief  relationships between types [4.6].
  template<typename, typename>
    struct is_same
    : public false_type { };

  template<typename _Tp>
    struct is_same<_Tp, _Tp>
    : public true_type { };

  /// @brief  const-volatile modifications [4.7.1].
  template<typename _Tp>
    struct remove_const
    { typedef _Tp     type; };

  template<typename _Tp>
    struct remove_const<_Tp const>
    { typedef _Tp     type; };
  
  template<typename _Tp>
    struct remove_volatile
    { typedef _Tp     type; };

  template<typename _Tp>
    struct remove_volatile<_Tp volatile>
    { typedef _Tp     type; };
  
  template<typename _Tp>
    struct remove_cv
    {
      typedef typename
      remove_const<typename remove_volatile<_Tp>::type>::type     type;
    };
  
  template<typename _Tp>
    struct add_const
    { typedef _Tp const     type; };
   
  template<typename _Tp>
    struct add_volatile
    { typedef _Tp volatile     type; };
  
  template<typename _Tp>
    struct add_cv
    {
      typedef typename
      add_const<typename add_volatile<_Tp>::type>::type     type;
    };

  /// @brief  reference modifications [4.7.2].
  template<typename _Tp>
    struct remove_reference
    { typedef _Tp     type; };

  template<typename _Tp>
    struct remove_reference<_Tp&>
    { typedef _Tp     type; };
  
  template<typename _Tp>
    struct add_reference
    { typedef _Tp&    type; };

  template<typename _Tp>
    struct add_reference<_Tp&>
    { typedef _Tp&    type; };

  /// @brief  array modififications [4.7.3].
  template<typename _Tp>
    struct remove_extent
    { typedef _Tp     type; };

  template<typename _Tp, std::size_t _Size>
    struct remove_extent<_Tp[_Size]>
    { typedef _Tp     type; };

  template<typename _Tp>
    struct remove_extent<_Tp[]>
    { typedef _Tp     type; };

  template<typename _Tp>
    struct remove_all_extents
    { typedef _Tp     type; };

  template<typename _Tp, std::size_t _Size>
    struct remove_all_extents<_Tp[_Size]>
    { typedef typename remove_all_extents<_Tp>::type     type; };

  template<typename _Tp>
    struct remove_all_extents<_Tp[]>
    { typedef typename remove_all_extents<_Tp>::type     type; };

  /// @brief  pointer modifications [4.7.4].
#undef _DEFINE_SPEC_BODY
#define _DEFINE_SPEC_BODY(_Value)      \
    { typedef _Tp     type; };

  template<typename _Tp>
    struct remove_pointer
    { typedef _Tp     type; };
  _DEFINE_SPEC(1, remove_pointer, _Tp*, false)
  
  template<typename _Tp>
    struct add_pointer
    { typedef typename remove_reference<_Tp>::type*     type; };

  /// @brief  other transformations [4.8].
  
  // Due to c++/19163 and c++/17743, for the time being we cannot use
  // the correct, neat implementation :-(
  // 
  // template<std::size_t _Len, std::size_t _Align>
  //   struct aligned_storage
  //   { typedef char type[_Len] __attribute__((__aligned__(_Align))); }
  //
  // Temporary workaround, useful for Align up to 32:
  template<std::size_t, std::size_t>
    struct aligned_storage { };

  template<std::size_t _Len>
    struct aligned_storage<_Len, 1>
    {
      union type
      {
	unsigned char __data[_Len];
	char __align __attribute__((__aligned__(1)));
      };
    };

  template<std::size_t _Len>
    struct aligned_storage<_Len, 2>
    {
      union type
      {
	unsigned char __data[_Len];
	char __align __attribute__((__aligned__(2)));
      };
    };

  template<std::size_t _Len>
    struct aligned_storage<_Len, 4>
    {
      union type
      {
	unsigned char __data[_Len];
	char __align __attribute__((__aligned__(4)));
      };
    };

  template<std::size_t _Len>
    struct aligned_storage<_Len, 8>
    {
      union type
      {
	unsigned char __data[_Len];
	char __align __attribute__((__aligned__(8)));
      };
    };

  template<std::size_t _Len>
    struct aligned_storage<_Len, 16>
    {
      union type
      {
	unsigned char __data[_Len];
	char __align __attribute__((__aligned__(16)));
      };
    };
  
  template<std::size_t _Len>
    struct aligned_storage<_Len, 32>
    {
      union type
      {
	unsigned char __data[_Len];
	char __align __attribute__((__aligned__(32)));
      };
    };

#undef _DEFINE_SPEC_0_HELPER
#undef _DEFINE_SPEC_1_HELPER
#undef _DEFINE_SPEC_2_HELPER
#undef _DEFINE_SPEC
#undef _DEFINE_SPEC_BODY

}
}

#endif