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

Perform the given operation on two DictionaryArrays which value type is DataType::Boolean.