An output iterator that appends to a buffer. It is used instead of back_insert_iterator to reduce symbol sizes and avoid the <iterator> dependency.
Declared in <fmt/base.h>
template<typename T>
class basic_appender;
| Name | Description |
|---|---|
container_type | The type of the buffer this appender writes to. |
| Name | Description |
|---|---|
basic_appender [constructor] | Constructs a basic_appender that appends to buf. |
operator= | Appends c to the buffer. |
operator* | Returns a reference to this appender. |
operator++ | Increment operators |
| Name | Description |
|---|---|
container | The buffer this appender writes to. |