ritelinked 0.2.1

HashMap-like containers that hold their key-value pairs in a user controllable order
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![no_std]

extern crate alloc;

pub mod linked_hash_map;
pub mod linked_hash_set;
#[cfg(feature = "serde")]
pub mod serde;

pub use linked_hash_map::LinkedHashMap;
pub use linked_hash_set::LinkedHashSet;