From ce642a30b72eef37758748a922ee974f7fbea316 Mon Sep 17 00:00:00 2001 From: Brett Date: Sat, 14 Oct 2023 17:06:10 -0400 Subject: [PATCH] rename --- include/blt/std/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/blt/std/string.h b/include/blt/std/string.h index 6026419..e92e21a 100755 --- a/include/blt/std/string.h +++ b/include/blt/std/string.h @@ -241,7 +241,7 @@ namespace blt::string 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::isdigit(c);