Closed filippobrizzi closed 3 months ago
couldn't we use absl::string_utils
for most of this stuff? eg https://github.com/abseil/abseil-cpp/blob/master/absl/strings/numbers.h
couldn't we use
absl::string_utils
for most of this stuff? eg https://github.com/abseil/abseil-cpp/blob/master/absl/strings/numbers.h
Great point, I didn't think of checking! Replaced
Description
Add a couple of new string utilities:
stringToInt64
to support alsodouble
->stringTo<T>
toLowerCase
std::string_view
instead ofconst&
.