Trait MaybeCompareFn

Source
pub trait MaybeCompareFn {
    // Required method
    fn maybe_compare(
        &self,
        other: &Array,
        operator: Operator,
    ) -> Option<Result<Array, VortexError>>;
}

Required Methods§

Source

fn maybe_compare( &self, other: &Array, operator: Operator, ) -> Option<Result<Array, VortexError>>

Implementations on Foreign Types§

Source§

impl MaybeCompareFn for ALPArray

Source§

fn maybe_compare( &self, array: &Array, operator: Operator, ) -> Option<Result<Array, VortexError>>

Source§

impl MaybeCompareFn for FSSTArray

Source§

fn maybe_compare( &self, other: &Array, operator: Operator, ) -> Option<Result<Array, VortexError>>

Implementors§