template<class E> bool isxdigit(E c, const locale& loc) const;
The template function returns use_facet< ctype<E> >(loc). is(ctype<E>:: xdigit, c).
use_facet
<
ctype
<E> >(loc).
is
(ctype<E>::
xdigit
, c)