| 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(); } |
nothing calls this directly
no outgoing calls
no test coverage detected