basicBuffer is an implementation for an array of code points that contain code points from both the Latin-1 character set and Basic Multilingual Plane.
| 70 | // basicBuffer is an implementation for an array of code points that contain code points from both |
| 71 | // the Latin-1 character set and Basic Multilingual Plane. |
| 72 | type basicBuffer struct { |
| 73 | arr []uint16 |
| 74 | } |
| 75 | |
| 76 | func (b *basicBuffer) Get(i int) rune { |
| 77 | return rune(uint32(b.arr[i])) |
nothing calls this directly
no outgoing calls
no test coverage detected