Struct is_transparent< Type, std::void_t< typename Type::is_transparent > >
Synopsis
#include <src/entt/core/type_traits.hpp>
template<typename Type>
struct is_transparent<Type, std::void_t<typename Type::is_transparent>>: std::true_type
Description
Provides the member constant value
to true if Type::is_transparent
is valid and denotes a type, false otherwise.
- Template Parameters
Type
- The type to test.
Inheritance
Ancestors: true_type
Source
Lines 514-515 in src/entt/core/type_traits.hpp.
template<typename Type>
struct is_transparent<Type, std::void_t<typename Type::is_transparent>>: std::true_type {};