binary_array_value

Function binary_array_value 

Source
pub fn binary_array_value(array: &ArrayRef, i: usize) -> &[u8] 
Expand description

Get the binary value at index i for Binary, LargeBinary, or BinaryView arrays.

Note: This method does not check for nulls and the value is arbitrary if is_null returns true for the index.

§Panics

  1. if index i is out of bounds;
  2. or the array is not a binary type.