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

Method value_unchecked

arrow-array/src/array/run_array.rs:771–774  ·  view source on GitHub ↗
(&self, logical_index: usize)

Source from the content-addressed store, hash-verified

769 }
770
771 unsafe fn value_unchecked(&self, logical_index: usize) -> Self::Item {
772 let physical_index = self.run_array.get_physical_index(logical_index);
773 unsafe { self.values().value_unchecked(physical_index) }
774 }
775}
776
777impl<'a, R, V> IntoIterator for TypedRunArray<'a, R, V>

Callers 1

valueMethod · 0.45

Calls 2

get_physical_indexMethod · 0.45
valuesMethod · 0.45

Tested by

no test coverage detected