(&self, f: &mut std::fmt::Formatter)
| 658 | |
| 659 | impl<OffsetSize: OffsetSizeTrait> std::fmt::Debug for GenericListArray<OffsetSize> { |
| 660 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
| 661 | let prefix = OffsetSize::PREFIX; |
| 662 | |
| 663 | write!(f, "{prefix}ListArray\n[\n")?; |
| 664 | print_long_array(self, f, |array, index, f| { |
| 665 | std::fmt::Debug::fmt(&array.value(index), f) |
| 666 | })?; |
| 667 | write!(f, "]") |
| 668 | } |
| 669 | } |
| 670 | |
| 671 | /// A [`GenericListArray`] of variable size lists, storing offsets as `i32`. |
nothing calls this directly
no test coverage detected