Namespaces
Variants
Views
Actions

std::isgraph(std::locale)

From cppreference.com
< cpp‎ | locale
Revision as of 17:18, 26 November 2011 by P12bot (Talk | contribs)

Template:cpp/locale/sidebar

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

Checks if the given character classified as a graphic character (i.e. printable, excluding space) 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 graphic, Template:cpp otherwise.

Equivalent function

Template:eq fun cpp

Example

Template:example cpp

See also

Template:cpp/string/byte/dcl list isgraphTemplate:cpp/string/wide/dcl list iswgraph