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