[][src]Struct rate_common::parser::FixedSizeHashTable

pub struct FixedSizeHashTable(_);

A hash table with a fixed size

This should work exactly like the one used in drat-trim. Given that we expect the number of clauses in the hash table not to exceed a couple million this should be faster and leaner than DynamicHashTable.

Methods

impl FixedSizeHashTable[src]

pub fn new() -> FixedSizeHashTable[src]

Allocate the hash table.

Trait Implementations

impl HeapSpace for FixedSizeHashTable[src]

impl HashTable for FixedSizeHashTable[src]

impl<'a> IntoIterator for &'a FixedSizeHashTable[src]

type Item = &'a Clause

The type of the elements being iterated over.

type IntoIter = FixedSizeHashTableIterator<'a>

Which kind of iterator are we turning this into?

Auto Trait Implementations

Blanket Implementations

impl<T> HeapSpace for T where
    T: Copy
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]