Module radix_rust::rust::collections  
source · Expand description
Collection types.
Re-exports§
- pub use btree_map::btreemap;
- pub use btree_set::btreeset;
- pub use hash_map::hashmap;
- pub use hash_map::HashMap;
- pub use hash_map::new as hash_map_new;
- pub use hash_map::with_capacity as hash_map_with_capacity;
- pub use hash_set::hashset;
- pub use hash_set::HashSet;
- pub use hash_set::new as hash_set_new;
- pub use hash_set::with_capacity as hash_set_with_capacity;
- pub use index_map::indexmap;
- pub use index_map::indexmap;
- pub use index_map::IndexMap;
- pub use index_map::new as index_map_new;
- pub use index_map::with_capacity as index_map_with_capacity;
- pub use index_set::indexset;
- pub use index_set::IndexSet;
- pub use index_set::new as index_set_new;
- pub use index_set::with_capacity as index_set_with_capacity;
- pub use non_iter_map::NonIterMap;
- pub use index_map::indexmap;
Modules§
- The methods and macros provided directly in thisindex_mapmodule (new,with_capacity) work in both std and no-std modes - unlike the corresponding methods onIndexMapitself.
- The methods and macros provided directly in thisindex_setmodule (new,with_capacity) work in both std and no-std modes - unlike the corresponding methods onIndexSetitself.
Structs§
- An ordered map based on a B-Tree.
- An ordered set based on a B-Tree.
- A doubly-linked list with owned nodes.
- A double-ended queue implemented with a growable ring buffer.