Namespaces
Variants
Views
Actions

std::isupper(std::locale)

From cppreference.com
< cpp‎ | locale
Revision as of 11:42, 19 September 2011 by Cubbi (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Template:cpp/locale/sidebar

Defined in header <locale>
template< class charT >
bool isupper( charT ch, const locale& loc );


Checks if the given character classified as an uppercase alphabetic character by the given locale's Template:cpp facet.

Contents

Parameters

ch - character
loc - locale

Return value

Returns Template:cpp if the character is classified as uppercase, Template:cpp otherwise.

Equivalent function

Template:eq fun cpp

Example

Template:example cpp

See also

Template:cpp/string/narrow/dcl list isupperTemplate:cpp/string/wide/dcl list iswupper