MCPcopy Create free account
hub / github.com/Raais/ImStudio / iterator_buffer

Method iterator_buffer

src/third-party/fmt/include/fmt/core.h:875–876  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

873
874 public:
875 explicit iterator_buffer(OutputIt out, size_t n = buffer_size)
876 : Traits(n), buffer<T>(data_, 0, buffer_size), out_(out) {}
877 iterator_buffer(iterator_buffer&& other)
878 : Traits(other), buffer<T>(data_, 0, buffer_size), out_(other.out_) {}
879 ~iterator_buffer() { flush(); }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected