IsBoxable

IsBoxable struct

Template predicate that checks if boxing of the specified type is supported.

template<typename T>class IsBoxable : public std::integral_constant<bool, std::is_base_of<Details::BoxableObjectBase, T>::value||std::is_arithmetic<T>::value||std::is_enum<T>::value>

Template parameters

ParameterDescription
TThe type to check

See Also