class UntypedFormatSpec

Defined at line 106 of file ../../third_party/abseil-cpp/src/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 108 of file ../../third_party/abseil-cpp/src/absl/strings/str_format.h

void UntypedFormatSpec (const UntypedFormatSpec & )

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

UntypedFormatSpec & operator= (const UntypedFormatSpec & )

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

void UntypedFormatSpec (string_view s)

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

Protected Methods

void UntypedFormatSpec (const str_format_internal::ParsedFormatBase * _Nonnull pc)

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

Friends

class UntypedFormatSpecImpl