template <typename ValueType>
struct DefaultFormatter
Defined at line 168 of file ../../third_party/abseil-cpp/src/absl/strings/internal/str_join_internal.h
DefaultFormatter
<T
> is a traits class that selects a default Formatter to use
for the given type T. The ::Type member names the Formatter to use. This is
used by the strings::Join() functions that do NOT take a Formatter argument,
in which case a default Formatter must be chosen.
AlphaNumFormatterImpl is the default in the base template, followed by
specializations for other types.