Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 384 Bytes

hashset.md

File metadata and controls

18 lines (14 loc) · 384 Bytes
title timestamp author published description tags todo
Set in Rust using HashSet
2024-05-03 03:40:01 -0700
szabgab
true
Sets in Rust are implemented as Hashes using the unit as the value.
HashSet
TODO

In Rust sets are implemented as HashMaps with the value being the unit ().