별의 공부 블로그 🧑🏻‍💻
728x90
728x170

*[header][other] type_traits (C++11)


<type_traits>

type_traits
This header defines a series of classes to obtain type information on compile-time.

The header contains:
  • Helper classes: Standard classes to assist in creating compile-time constants.
  • Type traits: Classes to obtain characteristics of types in the form of compile-time constant values.
  • Type transformations: Classes to obtain new types by applying specific transformations to existing types.

A basic trait for types is the categories in which they can be classified. This is a chart on how these categories overlap:
primary categoriescomposite categories
fundamentalvoid
std::nullptr_tscalarobject
integralarithmetic
floating point
compoundpointer
member object pointermember pointer
member function pointer
enum
union
class*
array
l-value referencereference
r-value reference
function
* = excluding unions


Helper classes


Type traits

Primary type categories


Composite type categories


Type properties


Type features


Type relationships


Property queries



Type transformations

Const-volatile qualifications


Compound type alterations


Other type generators



내용 출처 : http://www.cplusplus.com/reference/type_traits/

728x90
그리드형(광고전용)

'Programming > C++' 카테고리의 다른 글

[header][Multi-threading] condition_variable (C++11)  (0) 2017.11.08
[header][Multi-threading] atomic (C++11)  (0) 2017.11.08
[header][other] valarray  (0) 2017.11.08
[header][other] utility  (0) 2017.11.08
[header][other] typeinfo  (0) 2017.11.08
[header][other] typeindex (C++11)  (0) 2017.11.08
[header][other] tuple (C++11)  (0) 2017.11.08
[header][other] system_error (C++11)  (0) 2017.11.08
⚠️AdBlock이 감지되었습니다. 원할한 페이지 표시를 위해 AdBlock을 꺼주세요.⚠️
starrykss
starrykss
별의 공부 블로그 🧑🏻‍💻


📖 Contents 📖