(buff []byte)
| 81 | } |
| 82 | |
| 83 | func (d *SegmentDecoder) FastRange(buff []byte) (uint32, uint32, error) { |
| 84 | _, start, end, err := stripStartEnd(buff) |
| 85 | return start, end, err |
| 86 | } |
| 87 | |
| 88 | func marshalWithStartEnd(pb proto.Message, start uint32, end uint32) ([]byte, error) { |
| 89 | const uint32Size = 4 |
nothing calls this directly
no test coverage detected