v1
Brett 2023-10-14 17:06:10 -04:00
parent f55e7d931b
commit ce642a30b7
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ namespace blt::string
return s; return s;
} }
static inline bool isNumeric(const std::string& s) static inline bool is_numeric(const std::string& s)
{ {
return std::ranges::all_of(s, [](char c) -> bool { return std::ranges::all_of(s, [](char c) -> bool {
return std::isdigit(c); return std::isdigit(c);