Tests if the given character is a whitespace character. The whitespace characters are: space, form-feed ('f'), newline (' '), carriage return ('r'), horizontal tab ('t'), and vertical tab ('v').
Declared in <util/strencodings.h>
constexpr
bool
IsSpace(char c) noexcept;
This function is locale independent. Under the C locale this function gives the same result as std::isspace.
true if the argument is a whitespace character; otherwise false
| Name | Description |
|---|---|
| c [in] | character to test |