Namespaces
Variants
Views
Actions

std::isxdigit(std::locale)

From cppreference.com
Defined in header <locale>
template< class charT >
bool isxdigit( charT ch, const locale& loc );

Checks if the given character is classified as a hexadecimal digit by the given locale's std::ctype facet.

Contents

[edit] Parameters

ch - character
loc - locale

[edit] Return value

Returns true if the character is classified as a hexadecimal digit, false otherwise.

[edit] Possible implementation

[edit] Example

[edit] See also

checks if a character is a hexadecimal character
(function) [edit]
checks if a character is a hexadecimal character
(function) [edit]