| 14 | ) |
| 15 | |
| 16 | type BulkEncoder struct { |
| 17 | fill uint64 |
| 18 | off uint32 |
| 19 | |
| 20 | at uint64 |
| 21 | data []uint64 |
| 22 | } |
| 23 | |
| 24 | func NewBulkEncoder(bytes int) *BulkEncoder { |
| 25 | return &BulkEncoder{data: make([]uint64, bytes/8)} |
nothing calls this directly
no outgoing calls
no test coverage detected