Registry / utility / ordermap

ordermap

JSON →
library1.2.0rscratesunverified

A hash table with consistent order and fast iteration, similar to IndexMap.

# Cargo.toml [dependencies] ordermap = "1.2.0"
INSTALL
IMPORT
SIG · ORDERMAP
O
ordermap
utilityrustv1.2.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

OrderMap
use ordermap::OrderMap;

Create an OrderMap, insert key-value pairs, and iterate in insertion order.

use ordermap::OrderMap; let mut map = OrderMap::new(); map.insert("a", 1); map.insert("b", 2); for (key, value) in &map { println!("{}: {}", key, value); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
1.2.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
ordermap — cargo add ordermap · libregistry