Registry / utility / hashlink

hashlink

JSON →
library0.11.0rscratesunverified

HashMap-like containers that maintain insertion order of key-value pairs, similar to Python's OrderedDict.

# Cargo.toml [dependencies] hashlink = "0.11.0"
INSTALL
IMPORT
SIG · HASHLINK
H
hashlink
utilityrustv0.11.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.

LinkedHashMap
use hashlink::LinkedHashMap;

Creates a LinkedHashMap, inserts entries, and iterates in insertion order.

use hashlink::LinkedHashMap; fn main() { 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.11.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources
hashlink — cargo add hashlink · libregistry