Trait CompactableArray

Source
trait CompactableArray: Array {
    // Required method
    fn compact(&self, visibility: &Bitmap, cardinality: usize) -> Self;
}
Expand description

Implement compact on array, which removes element according to visibility.

Required Methods§

Source

fn compact(&self, visibility: &Bitmap, cardinality: usize) -> Self

Select some elements from Array based on visibility bitmap. cardinality is only used to decide capacity of the new Array.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§