diff options
author | 2022-03-23 16:08:50 +0100 | |
---|---|---|
committer | 2022-05-09 16:55:32 +0200 | |
commit | d2c85a18e0097266aa87c231c31917bc784c48b3 (patch) | |
tree | f022d2ed381fc1c62b498f88c452ed454704c67f /src/lib.rs | |
parent | fa1e92dacdb9588bb075ec9089742753293aa220 (diff) | |
download | heapless-d2c85a18e0097266aa87c231c31917bc784c48b3.tar.gz heapless-d2c85a18e0097266aa87c231c31917bc784c48b3.tar.zst heapless-d2c85a18e0097266aa87c231c31917bc784c48b3.zip |
Add entry API
Diffstat (limited to '')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -68,16 +68,16 @@ //! It *might* compile on older versions but that may change in any new patch release. #![cfg_attr(not(test), no_std)] -#![deny(missing_docs)] +#![warn(missing_docs)] #![deny(rust_2018_compatibility)] #![deny(rust_2018_idioms)] -#![deny(warnings)] +//#![deny(warnings)] #![deny(const_err)] pub use binary_heap::BinaryHeap; pub use deque::Deque; pub use histbuf::{HistoryBuffer, OldestOrdered}; -pub use indexmap::{Bucket, FnvIndexMap, IndexMap, Pos}; +pub use indexmap::{Bucket, FnvIndexMap, IndexMap, Pos, Entry, OccupiedEntry, VacantEntry}; pub use indexset::{FnvIndexSet, IndexSet}; pub use linear_map::LinearMap; #[cfg(all(has_cas, feature = "cas"))] |