diff options
author | cobat <cobat@yandex-team.ru> | 2022-02-10 16:49:07 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:07 +0300 |
commit | e486e109b08823b61996f2154f0bc6b7c27a4af4 (patch) | |
tree | cb98553f871fe96452fd02bd46a1a4e0cf165844 /util/string/type.h | |
parent | 85e7b8b43a12f69b4721aee71dea28491c9bd503 (diff) | |
download | ydb-e486e109b08823b61996f2154f0bc6b7c27a4af4.tar.gz |
Restoring authorship annotation for <cobat@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/string/type.h')
-rw-r--r-- | util/string/type.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/string/type.h b/util/string/type.h index d6cb29ea58..9602f260d1 100644 --- a/util/string/type.h +++ b/util/string/type.h @@ -4,17 +4,17 @@ Y_PURE_FUNCTION bool IsSpace(const char* s, size_t len) noexcept; -/// Checks if a string is a set of only space symbols. +/// Checks if a string is a set of only space symbols. Y_PURE_FUNCTION static inline bool IsSpace(const TStringBuf s) noexcept { return IsSpace(s.data(), s.size()); } -/// Returns "true" if the given string is an arabic number ([0-9]+) +/// Returns "true" if the given string is an arabic number ([0-9]+) Y_PURE_FUNCTION bool IsNumber(const TStringBuf s) noexcept; Y_PURE_FUNCTION bool IsNumber(const TWtringBuf s) noexcept; -/// Returns "true" if the given string is a hex number ([0-9a-fA-F]+) +/// Returns "true" if the given string is a hex number ([0-9a-fA-F]+) Y_PURE_FUNCTION bool IsHexNumber(const TStringBuf s) noexcept; Y_PURE_FUNCTION bool IsHexNumber(const TWtringBuf s) noexcept; |