string_array_value

Function string_array_value 

Source
pub fn string_array_value(array: &ArrayRef, i: usize) -> &str
Expand description

Get the string value at index i for Utf8, LargeUtf8, or Utf8View 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 string type.