asciiBuffer is an implementation for an array of code points that contain code points only from the ASCII character set.
| 50 | // asciiBuffer is an implementation for an array of code points that contain code points only from |
| 51 | // the ASCII character set. |
| 52 | type asciiBuffer struct { |
| 53 | arr []byte |
| 54 | } |
| 55 | |
| 56 | func (a *asciiBuffer) Get(i int) rune { |
| 57 | return rune(uint32(a.arr[i])) |
nothing calls this directly
no outgoing calls
no test coverage detected