Doubles the block-size target and returns the new size.
(&mut self)
| 674 | |
| 675 | /// Doubles the block-size target and returns the new size. |
| 676 | fn next_block_size(&mut self) -> u32 { |
| 677 | if self.block_size < STRING_VIEW_MAX_BLOCK_SIZE { |
| 678 | self.block_size = self.block_size.saturating_mul(2); |
| 679 | } |
| 680 | self.block_size |
| 681 | } |
| 682 | |
| 683 | /// See [`BulkNullStringArrayBuilder::append_value`]. |
| 684 | /// |
no outgoing calls
no test coverage detected