Registry / utility / linked-hash-map

linked-hash-map

JSON →
library0.5.6rscratesunverified

A HashMap wrapper that holds key-value pairs in insertion order

# Cargo.toml [dependencies] linked-hash-map = "0.5.6"
INSTALL
IMPORT
SIG · LINKED-HASH-MAP
L
linked-hash-map
utilityrustv0.5.6
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.

LinkedHashMap
use linked_hash_map::LinkedHashMap;

Create a map that preserves insertion order and iterate over it.

use linked_hash_map::LinkedHashMap; let mut map = LinkedHashMap::new(); map.insert("a", 1); map.insert("b", 2); for (k, v) in &map { println!("{}: {}", k, v); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.5.6latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
5 hits · last 30 days
node
4
Amazon
1
Resources
linked-hash-map — cargo add linked-hash-map · libregistry