absl::AlphaNum::AlphaNum

Constructs an AlphaNum from a type with an AbslStringify() overload.

Synopsis

Declared in <absl/strings/str_cat.h>

template<typename T>
requires HasAbslStringify<T>::value
AlphaNum(
    T const& v,
    /* implementation-defined */::StringifySink&& sink = {});

Parameters

NameDescription
vThe value to stringify.
sinkThe sink used to hold the stringified result.