clang  3.9.0
TypeTraits.h
Go to the documentation of this file.
1 //===--- TypeTraits.h - C++ Type Traits Support Enumerations ----*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 ///
10 /// \file
11 /// \brief Defines enumerations for the type traits support.
12 ///
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_CLANG_BASIC_TYPETRAITS_H
16 #define LLVM_CLANG_BASIC_TYPETRAITS_H
17 
18 namespace clang {
19 
20  /// \brief Names for traits that operate specifically on types.
21  enum TypeTrait {
84  };
85 
86  /// \brief Names for the array type traits.
90  };
91 
92  /// \brief Names for the "expression or type" traits.
98  };
99 }
100 
101 #endif
UnaryExprOrTypeTrait
Names for the "expression or type" traits.
Definition: TypeTraits.h:93
ArrayTypeTrait
Names for the array type traits.
Definition: TypeTraits.h:87
TypeTrait
Names for traits that operate specifically on types.
Definition: TypeTraits.h:21