absl::Hash
By Juemin Yang, Abseil Engineer
Abseil now includes a type-safe string formatting library: str_format
.
The str_format
library is a typesafe replacement for the family of
printf()
string formatting routines within the <cstdio>
standard
library header. The str_format
library provides most of the functionality
of printf()
type string formatting and a number of additional benefits:
std::string
and absl::string_view
printf
functionsFor more information, consult Abseil’s StrFormat Guide If you are interested in the design of this library, check out our StrFormat Design Notes.