MCPcopy Create free account
hub / github.com/fmtlib/fmt / operator=

Function operator=

include/fmt/base.h:2440–2443  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2438 constexpr basic_appender(detail::buffer<T>& buf) : container(&buf) {}
2439
2440 FMT_CONSTEXPR auto operator=(T c) -> basic_appender& {
2441 container->push_back(c);
2442 return *this;
2443 }
2444 FMT_CONSTEXPR auto operator*() -> basic_appender& { return *this; }
2445 FMT_CONSTEXPR auto operator++() -> basic_appender& { return *this; }
2446 FMT_CONSTEXPR auto operator++(int) -> basic_appender { return *this; }

Callers

nothing calls this directly

Calls 1

push_backMethod · 0.45

Tested by

no test coverage detected