Skip to content

Commit

Permalink
more unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
danking committed Jan 13, 2025
1 parent a713f7c commit 814b4ab
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions vortex-array/src/compute/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,6 @@ impl FilterMask {
self.range_selectivity
}

/// Get the canonical representation of the mask as a [BoolArray].
pub fn to_bool_array(&self) -> VortexResult<BoolArray> {
Ok(BoolArray::from(self.boolean_buffer()?.clone()))
}

/// Get the canonical representation of the mask.
pub fn to_boolean_buffer(&self) -> VortexResult<BooleanBuffer> {
log::debug!(
Expand All @@ -291,7 +286,7 @@ impl FilterMask {
})
}

pub(crate) fn indices(&self) -> VortexResult<&[usize]> {
fn indices(&self) -> VortexResult<&[usize]> {
self.indices
.get_or_try_init(|| {
let mut indices = Vec::with_capacity(self.true_count());
Expand Down

0 comments on commit 814b4ab

Please sign in to comment.