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