Buffer is an interface for accessing a contiguous array of code points.
| 23 | |
| 24 | // Buffer is an interface for accessing a contiguous array of code points. |
| 25 | type Buffer interface { |
| 26 | Get(i int) rune |
| 27 | Slice(i, j int) string |
| 28 | Len() int |
| 29 | } |
| 30 | |
| 31 | type emptyBuffer struct{} |
| 32 |
no outgoing calls
no test coverage detected