The result of format_to writing into a fixed-size character array.
Declared in <fmt/base.h>
struct format_to_result;
| Name | Description |
|---|---|
operator char* | Converts to a pointer to just after the last successful write. |
| Name | Description |
|---|---|
out | Pointer to just after the last successful write. |
truncated | Specifies if the output was truncated. |
| Name | Description |
|---|---|
format_to | Formats args according to specifications in fmt and writes the result into the fixed-size character array out, truncating if it does not fit. |
vformat_to | Formats args according to specifications in fmt and writes the result into the fixed-size character array out, truncating if it does not fit. |