(&self, f: &mut std::fmt::Formatter)
| 720 | |
| 721 | impl std::fmt::Debug for FixedSizeBinaryArray { |
| 722 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
| 723 | write!(f, "FixedSizeBinaryArray<{}>\n[\n", self.value_length())?; |
| 724 | print_long_array(self, f, |array, index, f| { |
| 725 | std::fmt::Debug::fmt(&array.value(index), f) |
| 726 | })?; |
| 727 | write!(f, "]") |
| 728 | } |
| 729 | } |
| 730 | |
| 731 | /// SAFETY: Correctly implements the contract of Arrow Arrays |
nothing calls this directly
no test coverage detected