| 11 | ) |
| 12 | |
| 13 | type IntEncoder struct { |
| 14 | typ super.Type |
| 15 | vals []int64 |
| 16 | min, max int64 |
| 17 | out []byte |
| 18 | } |
| 19 | |
| 20 | func NewIntEncoder(typ super.Type) *IntEncoder { |
| 21 | return &IntEncoder{ |
nothing calls this directly
no outgoing calls
no test coverage detected