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

Struct asciiBuffer

common/runes/buffer.go:52–54  ·  view source on GitHub ↗

asciiBuffer is an implementation for an array of code points that contain code points only from the ASCII character set.

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected