MCPcopy
hub / github.com/h2oai/wave / ListBuf

Struct ListBuf

listbuf.go:20–23  ·  view source on GitHub ↗

ListBuf represents a list (dynamic array) buffer.

Source from the content-addressed store, hash-verified

18
19// ListBuf represents a list (dynamic array) buffer.
20type ListBuf struct {
21 b *FixBuf
22 i int
23}
24
25func (b *ListBuf) put(ixs any) {
26 if xs, ok := ixs.([]any); ok {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected