1
2
3
4
5
6
7
8
9
10
11
12
//! Implementation of a sparse array storing maximum of 256 elements
mod bitmap;
mod fast;
mod sparse_array;

#[cfg(test)]
mod testing;

pub use crate::{
    fast::{FastSparseArray, FastSparseArrayBuilder, FastSparseArrayIter},
    sparse_array::{SparseArray, SparseArrayBuilder, SparseArrayIter},
};