Encoder is used to convert a list of UIDs into a UidPack object.
| 56 | |
| 57 | // Encoder is used to convert a list of UIDs into a UidPack object. |
| 58 | type Encoder struct { |
| 59 | BlockSize int |
| 60 | pack *UidPack |
| 61 | uids []uint64 |
| 62 | Alloc *z.Allocator |
| 63 | buf *bytes.Buffer |
| 64 | } |
| 65 | |
| 66 | var blockSize = int(unsafe.Sizeof(UidBlock{})) |
| 67 |
nothing calls this directly
no outgoing calls
no test coverage detected