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.
ch | - | character |
loc | - | locale |
Returns true
if the character is classified as a hexadecimal digit, false
otherwise.
template< class charT > bool isxdigit( charT ch, const std::locale& loc ) { return std::use_facet<std::ctype<charT>>(loc).is(std::ctype_base::xdigit, ch); } |
checks if a character is a hexadecimal character (function) |
|
checks if a character is a hexadecimal character (function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/locale/isxdigit