Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,18 @@ mod macros;
mod keyed;
pub mod map;
pub mod set;
mod sorted_keyed;
pub mod sorted_map;
pub mod sorted_set;

#[doc(inline)]
pub use self::map::VecMap;
#[doc(inline)]
pub use self::set::VecSet;
#[doc(inline)]
pub use self::sorted_map::SortedVecMap;
#[doc(inline)]
pub use self::sorted_set::SortedVecSet;
pub use alloc::collections::TryReserveError;
use alloc::vec::Vec;

Expand Down
1 change: 1 addition & 0 deletions src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,4 @@ macro_rules! vecset {
}
};
}

Loading