Struct candidate::CacheTable

source ·
pub struct CacheTable<T: Copy + Clone + PartialEq + PartialOrd> { /* private fields */ }
Expand description

Store a cache of entries, each with an associated hash.

Implementations§

Create a new CacheTable with each associated entry initialized with a hash of ‘0’ Note: You must pass in a size where only 1 bit is set. (AKA: 2, 4, 8, 16, 1024, 65536, etc.) Panics when size is invalid.

Get a particular entry with the hash specified

Add (or overwrite) an entry with the associated hash

Replace an entry in the hash table with a user-specified replacement policy specified by replace. The replace closure is called with the previous entry occupying the hash table slot, and returns true or false to specify whether the entry should be replaced. Note that the previous entry may not have the same hash, but merely be the default initialization or a hash collision with hash.

use candidate::CacheTable;


let mut table: CacheTable<char> = CacheTable::new(256, 'a');

assert_eq!(table.get(5), None);
// Note that 'a' is the default initialization value.
table.replace_if(5, 'b', |old_entry| old_entry != 'a');
assert_eq!(table.get(5), None);
table.replace_if(5, 'c', |old_entry| old_entry == 'a');
assert_eq!(table.get(5), Some('c'));
table.replace_if(5, 'd', |old_entry| old_entry == 'c');
assert_eq!(table.get(5), Some('d'));

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.