polars-arrow 0.53.0

Minimal implementation of the Arrow specification forked from arrow2
Documentation
//! contains [`Bitmap`] and [`MutableBitmap`], containers of `bool`.
mod immutable;
pub use immutable::*;

pub mod iterator;
pub use iterator::IntoIter;

mod mutable;
pub use mutable::MutableBitmap;

mod bitmap_ops;
pub use bitmap_ops::*;

pub mod aligned;

mod assign_ops;
pub use assign_ops::*;

pub mod utils;

pub mod bitmask;

mod builder;
pub use builder::*;

#[cfg(feature = "proptest")]
pub mod proptest;