max_categorical_array

Function max_categorical_array 

Source
pub fn max_categorical_array<T: Integer>(
    window: CategoricalAVT<'_, T>,
) -> Option<String>
Expand description

Finds the lexicographically maximum dictionary string in a categorical array window.

Scans through a windowed portion of a categorical array, resolves dictionary values, and determines the maximum string according to lexicographic ordering.

§Parameters

  • window: Categorical array view tuple (CategoricalArray, offset, length) defining the scan window

§Returns

Option<String> containing the maximum dictionary string, or None if all values are null.