(&self, f: &mut std::fmt::Formatter)
| 843 | |
| 844 | impl<T: ByteViewType + ?Sized> Debug for GenericByteViewArray<T> { |
| 845 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
| 846 | write!(f, "{}ViewArray\n[\n", T::PREFIX)?; |
| 847 | print_long_array(self, f, |array, index, f| { |
| 848 | std::fmt::Debug::fmt(&array.value(index), f) |
| 849 | })?; |
| 850 | write!(f, "]") |
| 851 | } |
| 852 | } |
| 853 | |
| 854 | /// SAFETY: Correctly implements the contract of Arrow Arrays |
nothing calls this directly
no test coverage detected