Line returns the string representation of the given line number
(i int)
| 1317 | |
| 1318 | // Line returns the string representation of the given line number |
| 1319 | func (b *Buffer) Line(i int) string { |
| 1320 | return string(b.LineBytes(i)) |
| 1321 | } |
| 1322 | |
| 1323 | func (b *Buffer) Write(bytes []byte) (n int, err error) { |
| 1324 | b.EventHandler.InsertBytes(b.End(), bytes) |