Buffered returns the number of bytes currently in the read buffer.
()
| 289 | |
| 290 | // Buffered returns the number of bytes currently in the read buffer. |
| 291 | func (m *Reader) Buffered() int { return m.R.Buffered() } |
| 292 | |
| 293 | // BufferSize returns the capacity of the read buffer. |
| 294 | func (m *Reader) BufferSize() int { return m.R.BufferSize() } |
no outgoing calls