Fill the buffer with some data. Returns the number of bytes placed in the buffer as a result of the operation. Throws an exception on failure.
| 189 | /// Fill the buffer with some data. Returns the number of bytes placed in the |
| 190 | /// buffer as a result of the operation. Throws an exception on failure. |
| 191 | std::size_t fill() |
| 192 | { |
| 193 | return stream_impl_.fill(); |
| 194 | } |
| 195 | |
| 196 | /// Fill the buffer with some data. Returns the number of bytes placed in the |
| 197 | /// buffer as a result of the operation, or 0 if an error occurred. |
no test coverage detected