@@ -76,16 +76,12 @@ pub trait Streaming {
76
76
fn reset ( & mut self ) ;
77
77
}
78
78
79
- fn transmute_for_stage0 < ' a > ( bytes : & ' a [ u8 ] ) -> & ' a [ u8 ] {
80
- bytes
81
- }
82
-
83
79
impl < A : IterBytes > Hash for A {
84
80
#[ inline( always) ]
85
81
fn hash_keyed ( & self , k0 : u64 , k1 : u64 ) -> u64 {
86
82
let mut s = State :: new ( k0, k1) ;
87
83
for self . iter_bytes( true ) |bytes| {
88
- s. input ( transmute_for_stage0 ( bytes) ) ;
84
+ s. input ( bytes) ;
89
85
}
90
86
s. result_u64 ( )
91
87
}
@@ -95,10 +91,10 @@ fn hash_keyed_2<A: IterBytes,
95
91
B : IterBytes > ( a : & A , b : & B , k0 : u64 , k1 : u64 ) -> u64 {
96
92
let mut s = State :: new ( k0, k1) ;
97
93
for a. iter_bytes( true ) |bytes| {
98
- s. input ( transmute_for_stage0 ( bytes) ) ;
94
+ s. input ( bytes) ;
99
95
}
100
96
for b. iter_bytes( true ) |bytes| {
101
- s. input ( transmute_for_stage0 ( bytes) ) ;
97
+ s. input ( bytes) ;
102
98
}
103
99
s. result_u64 ( )
104
100
}
@@ -108,13 +104,13 @@ fn hash_keyed_3<A: IterBytes,
108
104
C : IterBytes > ( a : & A , b : & B , c : & C , k0 : u64 , k1 : u64 ) -> u64 {
109
105
let mut s = State :: new ( k0, k1) ;
110
106
for a. iter_bytes( true ) |bytes| {
111
- s. input ( transmute_for_stage0 ( bytes) ) ;
107
+ s. input ( bytes) ;
112
108
}
113
109
for b. iter_bytes( true ) |bytes| {
114
- s. input ( transmute_for_stage0 ( bytes) ) ;
110
+ s. input ( bytes) ;
115
111
}
116
112
for c. iter_bytes( true ) |bytes| {
117
- s. input ( transmute_for_stage0 ( bytes) ) ;
113
+ s. input ( bytes) ;
118
114
}
119
115
s. result_u64 ( )
120
116
}
@@ -132,16 +128,16 @@ fn hash_keyed_4<A: IterBytes,
132
128
-> u64 {
133
129
let mut s = State :: new ( k0, k1) ;
134
130
for a. iter_bytes( true ) |bytes| {
135
- s. input ( transmute_for_stage0 ( bytes) ) ;
131
+ s. input ( bytes) ;
136
132
}
137
133
for b. iter_bytes( true ) |bytes| {
138
- s. input ( transmute_for_stage0 ( bytes) ) ;
134
+ s. input ( bytes) ;
139
135
}
140
136
for c. iter_bytes( true ) |bytes| {
141
- s. input ( transmute_for_stage0 ( bytes) ) ;
137
+ s. input ( bytes) ;
142
138
}
143
139
for d. iter_bytes( true ) |bytes| {
144
- s. input ( transmute_for_stage0 ( bytes) ) ;
140
+ s. input ( bytes) ;
145
141
}
146
142
s. result_u64 ( )
147
143
}
@@ -161,19 +157,19 @@ fn hash_keyed_5<A: IterBytes,
161
157
-> u64 {
162
158
let mut s = State :: new ( k0, k1) ;
163
159
for a. iter_bytes( true ) |bytes| {
164
- s. input ( transmute_for_stage0 ( bytes) ) ;
160
+ s. input ( bytes) ;
165
161
}
166
162
for b. iter_bytes( true ) |bytes| {
167
- s. input ( transmute_for_stage0 ( bytes) ) ;
163
+ s. input ( bytes) ;
168
164
}
169
165
for c. iter_bytes( true ) |bytes| {
170
- s. input ( transmute_for_stage0 ( bytes) ) ;
166
+ s. input ( bytes) ;
171
167
}
172
168
for d. iter_bytes( true ) |bytes| {
173
- s. input ( transmute_for_stage0 ( bytes) ) ;
169
+ s. input ( bytes) ;
174
170
}
175
171
for e. iter_bytes( true ) |bytes| {
176
- s. input ( transmute_for_stage0 ( bytes) ) ;
172
+ s. input ( bytes) ;
177
173
}
178
174
s. result_u64 ( )
179
175
}
0 commit comments