3 releases

0.1.2 Feb 24, 2025
0.1.1 Feb 24, 2025
0.1.0 Feb 24, 2025

#782 in Data structures

Download history 248/week @ 2025-02-19 103/week @ 2025-02-26

351 downloads per month

MIT license

17KB
218 lines

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.


lib.rs:

x-map is a crate intended to add some more map and vector implementations which are fast, and flexible in their usage environments.

No runtime deps