Module bucket_queue_view

Source
Expand description

The BucketQueueView implements a queue that can push on the back and delete on the front and group data in buckets.

Structs§

BucketQueueView
A view that supports a FIFO queue for values of type T. The size N has to be chosen by taking into account the size of the type T and the basic size of a block. For example a total size of 100 bytes to 10 KB seems adequate.

Type Aliases§

HashedBucketQueueView
Type wrapping QueueView while memoizing the hash.
HistoricallyHashedBucketQueueView
Wrapper around BucketQueueView to compute hashes based on the history of changes.