Home
last modified time | relevance | path

Searched refs:type_constant (Results 1 – 1 of 1) sorted by relevance

/CafeSDK-2.12.13/system/include/nn/util/
Dutil_TypeTraits.h117 struct type_constant struct
122 ~type_constant(); argument
128 struct integral_constant : public type_constant<integral_constant<T, v> >
346 template <class T> struct remove_const : public type_constant<T> {};
347 template <class T> struct remove_const<const T> : public type_constant<T> {};
350 template <class T> struct remove_volatile : public type_constant<T> {};
351 template <class T> struct remove_volatile<volatile T> : public type_constant<T> {};
354 template <class T> struct add_const : public type_constant<const T> {};
355 template <class T> struct add_volatile : public type_constant<volatile T> {};
362 template <class T> struct remove_reference : public type_constant<T> {};
[all …]