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

Method value_unchecked

arrow-array/src/array/primitive_array.rs:760–762  ·  view source on GitHub ↗
(&self, i: usize)

Source from the content-addressed store, hash-verified

758 /// caller must ensure that the passed in offset is less than the array len()
759 #[inline]
760 pub unsafe fn value_unchecked(&self, i: usize) -> T::Native {
761 unsafe { *self.values.get_unchecked(i) }
762 }
763
764 /// Returns the primitive value at index `i`.
765 ///

Callers 6

valueMethod · 0.45
take_iter_uncheckedMethod · 0.45
try_unaryMethod · 0.45
unary_optMethod · 0.45
from_unaryMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected