(&self, f: &mut std::fmt::Formatter)
| 454 | |
| 455 | impl<T: ByteArrayType> std::fmt::Debug for GenericByteArray<T> { |
| 456 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
| 457 | write!(f, "{}{}Array\n[\n", T::Offset::PREFIX, T::PREFIX)?; |
| 458 | print_long_array(self, f, |array, index, f| { |
| 459 | std::fmt::Debug::fmt(&array.value(index), f) |
| 460 | })?; |
| 461 | write!(f, "]") |
| 462 | } |
| 463 | } |
| 464 | |
| 465 | /// SAFETY: Correctly implements the contract of Arrow Arrays |
nothing calls this directly
no test coverage detected