Expand description
The BucketQueueView implements a queue that can push on the back and delete on the front and group data in buckets.
Structs§
- Bucket
Queue View - A view that supports a FIFO queue for values of type
T. The sizeNhas to be chosen by taking into account the size of the typeTand the basic size of a block. For example a total size of 100 bytes to 10 KB seems adequate.
Type Aliases§
- Hashed
Bucket Queue View - Type wrapping
QueueViewwhile memoizing the hash. - Historically
Hashed Bucket Queue View - Wrapper around
BucketQueueViewto compute hashes based on the history of changes.