Skip to content

Commit

Permalink
Don't put bitmap::BitmapIterator at the top level
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Emann committed Sep 5, 2023
1 parent 686a3a1 commit 36c2fef
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion croaring/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ mod serialization;
pub use serialization::*;

pub use bitmap::Bitmap;
pub use bitmap::BitmapIterator;
pub use bitset::Bitset;
pub use treemap::Treemap;

Expand Down
3 changes: 2 additions & 1 deletion croaring/src/treemap/iter.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use super::util;
use super::{Bitmap, BitmapIterator, Treemap};
use crate::bitmap::BitmapIterator;
use crate::{Bitmap, Treemap};
use std::collections::btree_map;
use std::iter::{self, FromIterator};

Expand Down
1 change: 0 additions & 1 deletion croaring/src/treemap/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
//! assert_eq!(treemap.cardinality(), 3);
//! ```
use crate::Bitmap;
use crate::BitmapIterator;
use std::collections::BTreeMap;

mod imp;
Expand Down

0 comments on commit 36c2fef

Please sign in to comment.