absl::HasAbslStringify

Detects if type T supports the AbslStringify() customization point.

Synopsis

Declared in <absl/strings/has_absl_stringify.h>

template<
    typename T,
    typename = void>
struct HasAbslStringify
    : std::false_type

Description

See https://abseil.io/docs/cpp/guides/format#abslstringify for the documentation.

Note that there are types that can be StrCat-ed that do not use the AbslStringify customization point (for example, int).

Base Classes

NameDescription
std::false_type

Specializations

Name
HasAbslStringify<T>