| 84 | } |
| 85 | |
| 86 | void WriteBatchInternal::SetCount(WriteBatch* b, int n) { |
| 87 | EncodeFixed32(&b->rep_[8], n); |
| 88 | } |
| 89 | |
| 90 | SequenceNumber WriteBatchInternal::Sequence(const WriteBatch* b) { |
| 91 | return SequenceNumber(DecodeFixed64(b->rep_.data())); |
nothing calls this directly
no test coverage detected