| 94 | } |
| 95 | |
| 96 | type UintEncoder struct { |
| 97 | typ super.Type |
| 98 | vals []uint64 |
| 99 | min, max uint64 |
| 100 | out []byte |
| 101 | } |
| 102 | |
| 103 | func NewUintEncoder(typ super.Type) *UintEncoder { |
| 104 | return &UintEncoder{typ: typ} |
nothing calls this directly
no outgoing calls
no test coverage detected