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

Method fmt

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

Source from the content-addressed store, hash-verified

843
844impl<T: ByteViewType + ?Sized> Debug for GenericByteViewArray<T> {
845 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
846 write!(f, "{}ViewArray\n[\n", T::PREFIX)?;
847 print_long_array(self, f, |array, index, f| {
848 std::fmt::Debug::fmt(&array.value(index), f)
849 })?;
850 write!(f, "]")
851 }
852}
853
854/// SAFETY: Correctly implements the contract of Arrow Arrays

Callers

nothing calls this directly

Calls 2

print_long_arrayFunction · 0.85
valueMethod · 0.45

Tested by

no test coverage detected