Registry / utility / linked-hash-set

linked-hash-set

JSON →
library0.1.6rscratesunverified

A HashSet that preserves insertion order, providing fast iteration and consistent ordering.

# Cargo.toml [dependencies] linked_hash_set = "0.1.6"
INSTALL
IMPORT
SIG · LINKED-HASH-SET
L
linked-hash-set
utilityrustv0.1.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.

LinkedHashSet
use linked_hash_set::LinkedHashSet;

Create a LinkedHashSet, insert elements, and iterate in insertion order.

use linked_hash_set::LinkedHashSet; let mut set = LinkedHashSet::new(); set.insert(1); set.insert(2); for item in &set { println!("{}", item); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.1.6latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
8 hits · last 30 days
node
8
Resources
linked-hash-set — cargo add linked-hash-set · libregistry