(&self, f: &mut std::fmt::Formatter)
| 72 | |
| 73 | impl std::fmt::Debug for BooleanArray { |
| 74 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
| 75 | write!(f, "BooleanArray\n[\n")?; |
| 76 | print_long_array(self, f, |array, index, f| { |
| 77 | std::fmt::Debug::fmt(&array.value(index), f) |
| 78 | })?; |
| 79 | write!(f, "]") |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | impl BooleanArray { |
nothing calls this directly
no test coverage detected