x-map 0.1.2

Extended map/vector structures for Rust
Documentation
  • Coverage
  • 77.78%
    14 out of 18 items documented1 out of 11 items with examples
  • Size
  • Source code size: 17.23 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.92 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 12s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • damianjoakes/xmap
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • damianjoakes

xmap

NOTE: This crate is a work in progress. As time goes on, more features may be added or removed.

About

What is xmap?

xmap is a crate containing various new vector/map implementations, including multi-indexed maps.

What does this include?

  • CIndexMap<K, V> - A chronologically-indexed map. Allows accessing elements by both insertion order and by key.

Types of maps

CIndexMap<K, V>

Purpose

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.