int_array_value_at_index

Function int_array_value_at_index 

Source
pub fn int_array_value_at_index(array: &ArrayRef, i: usize) -> Option<i64>
Expand description

Get the integer value (i64) at index i for any integer array.

Returns None when:

  • the array type is not an integer type;
  • the value is larger than i64::MAX;
  • the value is null.

ยงPanics

If index i is out of bounds.