Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
hashbrown - Rust
[go: Go Back, main page]

Crate hashbrown

source ·
Expand description

This crate is a Rust port of Google’s high-performance SwissTable hash map, adapted to make it a drop-in replacement for Rust’s standard HashMap and HashSet types.

The original C++ version of SwissTable can be found here, and this CppCon talk gives an overview of how the algorithm works.

Modules

A hash map implemented with quadratic probing and SIMD lookup.
A hash set implemented as a HashMap where the value is ().
Experimental and unsafe RawTable API. This module is only available if the raw feature is enabled.

Structs

A hash map implemented with quadratic probing and SIMD lookup.
A hash set implemented as a HashMap where the value is ().

Enums

The error type for try_reserve methods.

Traits

Key equivalence trait.