pub fn cmp_dict<K, T, F>(
    left: &DictionaryArray<K>,
    right: &DictionaryArray<K>,
    op: F
) -> Result<BooleanArray> where
    K: ArrowNumericType,
    T: ArrowNumericType,
    F: Fn(T::Native, T::Native) -> bool
Expand description

Perform given operation on two DictionaryArrays. Returns an error if the two arrays have different value type