Have all of the bytes in this buffer been consumed?
(&self)
| 330 | |
| 331 | /// Have all of the bytes in this buffer been consumed? |
| 332 | fn is_empty(&self) -> bool { |
| 333 | self.position == self.length |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | /// A single line of linewrapped data, providing a read buffer. |
no test coverage detected