Appends the given string `s` to the buffer.
(&mut self, s: &LineBuffer)
| 121 | |
| 122 | /// Appends the given string `s` to the buffer. |
| 123 | pub fn push_str(&mut self, s: &LineBuffer) { |
| 124 | self.line.push_str(&s.line); |
| 125 | } |
| 126 | |
| 127 | /// Splits the buffer in two parts at the position `at`. |
| 128 | /// |