class UntypedFormatSpec

Defined at line 105 of file ../../third_party/abseil-cpp/absl/strings/str_format.h

UntypedFormatSpec

A type-erased class that can be used directly within untyped API entry

points. An `UntypedFormatSpec` is specifically used as an argument to

`FormatUntyped()`.

Example:

absl::UntypedFormatSpec format("%d");

std::string out;

CHECK(absl::FormatUntyped(

&out

, format, {absl::FormatArg(1)}));

Public Methods

void UntypedFormatSpec ()

Defined at line 107 of file ../../third_party/abseil-cpp/absl/strings/str_format.h

void UntypedFormatSpec (const UntypedFormatSpec & )

Defined at line 108 of file ../../third_party/abseil-cpp/absl/strings/str_format.h

UntypedFormatSpec & operator= (const UntypedFormatSpec & )

Defined at line 109 of file ../../third_party/abseil-cpp/absl/strings/str_format.h

void UntypedFormatSpec (string_view s)

Defined at line 111 of file ../../third_party/abseil-cpp/absl/strings/str_format.h

Protected Methods

void UntypedFormatSpec (absl::Nonnull<const str_format_internal::ParsedFormatBase *> pc)

Defined at line 114 of file ../../third_party/abseil-cpp/absl/strings/str_format.h

Friends

class UntypedFormatSpecImpl