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

Method operator=

include/fmt/format.h:2259–2265  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2257 return *this;
2258 }
2259 FMT_CONSTEXPR auto operator=(char c) -> bounded_output_iterator& {
2260 if (bound > 0) {
2261 *underlying_iterator++ = c;
2262 --bound;
2263 }
2264 return *this;
2265 }
2266 };
2267
2268 return write_padded<char>(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected