Определение типа (Typedef) true_type
Содержит целая константа с действительной стоимостью.
typedef integral_constant<bool, true> true_type;
Заметки
Тип является синонимом специализации шаблона integral_constant.
Пример
// std_tr1__type_traits__true_type.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
int main()
{
std::cout << "false_type == " << std::boolalpha
<< std::false_type::value << std::endl;
std::cout << "true_type == " << std::boolalpha
<< std::true_type::value << std::endl;
return (0);
}
Требования
Заголовок: <type_traits>
Пространство имен: std
См. также
Ссылки
Определение типа (Typedef) false_type