We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a713f7c commit 814b4abCopy full SHA for 814b4ab
vortex-array/src/compute/filter.rs
@@ -264,11 +264,6 @@ impl FilterMask {
264
self.range_selectivity
265
}
266
267
- /// Get the canonical representation of the mask as a [BoolArray].
268
- pub fn to_bool_array(&self) -> VortexResult<BoolArray> {
269
- Ok(BoolArray::from(self.boolean_buffer()?.clone()))
270
- }
271
-
272
/// Get the canonical representation of the mask.
273
pub fn to_boolean_buffer(&self) -> VortexResult<BooleanBuffer> {
274
log::debug!(
@@ -291,7 +286,7 @@ impl FilterMask {
291
286
})
292
287
293
288
294
- pub(crate) fn indices(&self) -> VortexResult<&[usize]> {
289
+ fn indices(&self) -> VortexResult<&[usize]> {
295
290
self.indices
296
.get_or_try_init(|| {
297
let mut indices = Vec::with_capacity(self.true_count());
0 commit comments