1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
//! `wyhash` and `wyrand` are the ideal 64-bit hash function and PRNG respectively:
//!
//! by Wang Yi <godspeed_china@yeah.net>
//!
//! https://github.com/wangyi-fudan/wyhash
//!
//! - solid: wyhash passed SMHasher, wyrand passed BigCrush, practrand.
//! - portable: 64-bit/32-bit system, big/little endian.
//! - fastest: Efficient on 64-bit machines, especially for short keys.
//! - simplest: In the sense of code size.
//!
//! # Example
//!
//! ```
//! use std::hash::{Hash, Hasher};
//!
//! use fasthash::wy;
//!
//! fn hash<T: Hash>(t: &T) -> u64 {
//! let mut s: wy::Hasher64 = Default::default();
//! t.hash(&mut s);
//! s.finish()
//! }
//!
//! let h = wy::hash64(b"hello world\xff");
//!
//! assert_eq!(h, hash(&"hello world"));
//! ```
//!
use crateffi;
use crateFastHash;
/// `whhash` 64-bit hash functions
///
/// # Example
///
/// ```
/// use fasthash::{wy::Hash64, FastHash};
///
/// assert_eq!(Hash64::hash(b"hello"), 18063072054746964485);
/// assert_eq!(Hash64::hash_with_seed(b"hello", 123), 13299223181586284300);
/// assert_eq!(Hash64::hash(b"helloworld"), 13016868308130960481);
/// ```
;
trivial_hasher!
/// `wyhash` 64-bit hash functions for a byte array.
/// `wyhash` 64-bit hash function for a byte array.
/// For convenience, a 32-bit seed is also hashed into the result.