virtual E do_widen(char ch) const;
virtual const char *do_widen(char *first, char *last, E *dst) const;
The first protected member template function returns E(ch)
.
The second protected member template function stores in dst[I]
the value do_widen(first[I])
, for I
in the
interval [0, last - first)
.