| 1940 | |
| 1941 | public: |
| 1942 | explicit iterator_buffer(OutputIt out, size_t n = buffer_size) |
| 1943 | : Traits(n), buffer<T>(grow, data_, 0, buffer_size), out_(out) {} |
| 1944 | iterator_buffer(iterator_buffer&& other) noexcept |
| 1945 | : Traits(other), |
| 1946 | buffer<T>(grow, data_, 0, buffer_size), |
nothing calls this directly
no outgoing calls
no test coverage detected