MCPcopy Create free account
hub / github.com/cel-expr/cel-go / basicBuffer

Struct basicBuffer

common/runes/buffer.go:72–74  ·  view source on GitHub ↗

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.

Source from the content-addressed store, hash-verified

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.
72type basicBuffer struct {
73 arr []uint16
74}
75
76func (b *basicBuffer) Get(i int) rune {
77 return rune(uint32(b.arr[i]))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected