| Crates.io | x-map |
| lib.rs | x-map |
| version | 0.1.2 |
| created_at | 2025-02-24 19:25:53.945762+00 |
| updated_at | 2025-02-24 21:53:48.967662+00 |
| description | Extended map/vector structures for Rust |
| homepage | https://github.com/damianjoakes/xmap |
| repository | https://github.com/damianjoakes/xmap.git |
| max_upload_size | |
| id | 1567850 |
| size | 17,717 |
NOTE: This crate is a work in progress. As time goes on, more features may be added or removed.
xmap is a crate containing various new vector/map implementations, including multi-indexed maps.
CIndexMap<K, V> - A chronologically-indexed map. Allows accessing elements by both insertion
order and by key.
CIndexMap<K, V>A key/value map designed to prioritize insertion order (chronological-index-map).
All keys in this map are accessible directly by their insertion order. All values in this map are accessible directly by their associated key.