IsStringPointer

IsStringPointer struct

Template magic to check if a type is a pointer to character string.

template<typename T,typename CharT>class IsStringPointer : public std::integral_constant<bool, IsStringByteSequence<T, CharT>::value &&std::is_pointer<T>::value>

Template parameters

ParameterDescription
Tchecked type.
CharTCharacter type to check against.

See Also