Trait vortex::compute::SearchSortedFn

source ·
pub trait SearchSortedFn {
    // Required method
    fn search_sorted(
        &self,
        value: &Scalar,
        side: SearchSortedSide,
    ) -> VortexResult<SearchResult>;
}
Expand description

Searches for value assuming the array is sorted.

For nullable arrays we assume that the nulls are sorted last, i.e. they’re the greatest value

Required Methods§

Implementors§