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

Method fmt

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

Source from the content-addressed store, hash-verified

455
456impl std::fmt::Debug for MapArray {
457 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
458 write!(f, "MapArray\n[\n")?;
459 print_long_array(self, f, |array, index, f| {
460 std::fmt::Debug::fmt(&array.value(index), f)
461 })?;
462 write!(f, "]")
463 }
464}
465
466impl From<MapArray> for ListArray {

Callers

nothing calls this directly

Calls 2

print_long_arrayFunction · 0.85
valueMethod · 0.45

Tested by

no test coverage detected