Struct hashers::jenkins::OAATHasher[][src]

pub struct OAATHasher(_);

The one-at-a-time Hasher. Relatively simple, but superseded by later algorithms.

From http://www.burtleburtle.net/bob/hash/doobs.html:

This is similar to the rotating hash, but it actually mixes the internal state. It takes 9n+9 instructions and produces a full 4-byte result. Preliminary analysis suggests there are no funnels.

This hash was not in the original Dr. Dobb's article. I implemented it to fill a set of requirements posed by Colin Plumb. Colin ended up using an even simpler (and weaker) hash that was sufficient for his purpose.

Trait Implementations

impl Hasher for OAATHasher
[src]

Returns the hash value for the values written so far. Read more

Writes some data into this Hasher. Read more

Writes a single u8 into this hasher.

Writes a single u16 into this hasher.

Writes a single u32 into this hasher.

Writes a single u64 into this hasher.

Writes a single u128 into this hasher.

Writes a single usize into this hasher.

Writes a single i8 into this hasher.

Writes a single i16 into this hasher.

Writes a single i32 into this hasher.

Writes a single i64 into this hasher.

Writes a single i128 into this hasher.

Writes a single isize into this hasher.

impl Default for OAATHasher
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for OAATHasher

impl Sync for OAATHasher