//! Bitvector implementations with rank and select support.
//!
//! This module provides succinct bitvector data structures with O(1) rank
//! and O(log n) select operations.
//!
//! # Data Structures
//!
//! - [`BitVec`] - Main bitvector with integrated rank/select indices
//! - [`RankDirectory`] - 3-level Poppy-style rank index (~3% overhead)
//! - [`SelectIndex`] - Sampled select index (~1-3% overhead)
//! - [`EliasFano`](crate::bits::EliasFano) - Elias-Fano encoding for monotone integer sequences
//!
//! # Example
//!
//! ```
//! use succinctly::bits::BitVec;
//! use succinctly::RankSelect;
//!
//! let bv = BitVec::from_words(vec![0b1010_1010u64], 8);
//! assert_eq!(bv.rank1(4), 2);
//! assert_eq!(bv.select1(1), Some(3));
//! ```
pub
pub use BitVec;
pub use CompactRank;
pub use ;
pub use ;
pub use RankDirectory;
pub use SelectIndex;