May 2003
Intermediate to advanced
808 pages
32h 24m
English
islower function template — Determines whether a character is lowercase in a locale
template <typename charT>
bool islower(charT c, const locale& loc);The islower function
determines whether the character c is a lowercase letter in the locale
loc. It returns the
following:
use_facet<ctype<charT> >(loc).is(ctype_base::lower, c)
Read now
Unlock full access