MCPcopy Create free account
hub / github.com/apache/arrow-rs / fmt

Method fmt

arrow-array/src/array/list_view_array.rs:543–550  ·  view source on GitHub ↗
(&self, f: &mut std::fmt::Formatter)

Source from the content-addressed store, hash-verified

541
542impl<OffsetSize: OffsetSizeTrait> std::fmt::Debug for GenericListViewArray<OffsetSize> {
543 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
544 let prefix = OffsetSize::PREFIX;
545 write!(f, "{prefix}ListViewArray\n[\n")?;
546 print_long_array(self, f, |array, index, f| {
547 std::fmt::Debug::fmt(&array.value(index), f)
548 })?;
549 write!(f, "]")
550 }
551}
552
553impl<OffsetSize: OffsetSizeTrait> From<GenericListArray<OffsetSize>>

Callers

nothing calls this directly

Calls 2

print_long_arrayFunction · 0.85
valueMethod · 0.45

Tested by

no test coverage detected