Expand description
Structs§
- A hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.
- A hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.
- The standard RNG. The PRNG algorithm in
StdRng
is chosen to be efficient on the current platform, to be statistically strong and unpredictable (meaning a cryptographically secure PRNG).
Traits§
FromParallelIterator
implements the creation of a collection from aParallelIterator
. By implementingFromParallelIterator
for a given type, you define how it will be created from an iterator.IntoParallelIterator
implements the conversion to aParallelIterator
.- Parallel version of the standard iterator trait.
Type Aliases§
- A hash set where the iteration order of the values is independent of their hash values.