| 1707 | void PutImpl(const SequenceType& src, int num_values); |
| 1708 | |
| 1709 | int64_t MaxRleBufferSize() const noexcept { |
| 1710 | return RlePreserveBufferSize(static_cast<int64_t>(buffered_append_values_.size()), |
| 1711 | kBitWidth); |
| 1712 | } |
| 1713 | |
| 1714 | constexpr static int32_t kBitWidth = 1; |
| 1715 | /// 4 bytes in little-endian, which indicates the length. |
nothing calls this directly
no test coverage detected