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
- if index
i is out of bounds;
- or the array is not a binary type.