ALib C++ Library
Library Version: 2510 R0
Documentation generated by doxygen
Loading...
Searching...
No Matches
alib::characters::IsCharacter Concept Reference

Description:

A concept to identify ALib character types nchar, wchar and xchar. For these three types the concept is satisfied.

Template Parameters
TThe type to test for being an ALib character type.

Definition at line 534 of file chartraits.inl.

Concept definition

template<typename T>
concept alib::characters::IsCharacter = std::is_same_v<T,nchar>
|| std::is_same_v<T,wchar>
|| std::is_same_v<T,xchar>