Expand description
Testing utilities for map types.
Enumsยง
Constantsยง
- OPS ๐
Functionsยง
- assert_
logs_ ๐consistent - insert_
concurrent - Runs random insert operations concurrently.
- log_
concurrent - Randomly runs many operations concurrently and logs the operations & results per thread. Then
checks the consistency of the log. For example, if the key
k
was successfully deleted twice, thenk
must have been inserted at least twice. - lookup_
concurrent - Runs random lookup operations concurrently.
- stress_
concurrent - Randomly runs many operations concurrently.
- stress_
sequential - Runs many operations in a single thread and tests if it works like a map data structure using
std::collections::HashMap
as reference.