IsStringByteSequence

IsStringByteSequence struct

Template magic to check if a type is a sequence of string characters.

template<typename T,typename CharT>class IsStringByteSequence : public std::integral_constant<bool, std::is_same<std::remove_const<std::remove_pointer<std::decay<T>::type>::type>::type, CharT>::value>

Template parameters

ParameterDescription
Tchecked type.
CharTCharacter type to check against.

See Also