A type-erased class that can be used directly within untyped API entry points.
Declared in <absl/strings/str_format.h>
class UntypedFormatSpec;
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)}));
| Name | Description |
|---|---|
UntypedFormatSpec [constructor] | Constructors |
operator= [deleted] | Deleted copy assignment operator. |
| Name | Description |
|---|---|
UntypedFormatSpec [constructor] | Constructs an untyped format spec from a pre-parsed format. |
| Name | Description |
|---|---|
absl::str_format_internal::UntypedFormatSpecImpl |