ctype_byname<char> class — Facet for classifying narrow characters
template <> class ctype_byname<char> : public ctype<char> { public: explicit ctype_byname(const char*, size_t refs = 0); protected: // . . . Same virtual functions as in ctype<char> };
The ctype_byname<char>
class specializes
the ctype_byname
template for
type char
. (No specialization
exists for signed
char
and unsigned
char
.) It derives from ctype<char>
, so it inherits its
table-driven implementation.