We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0027e98 commit bca8eebCopy full SHA for bca8eeb
src/libcore/hash/mod.rs
@@ -308,7 +308,7 @@ pub trait Hasher {
308
}
309
/// Writes a single `u128` into this hasher.
310
#[inline]
311
- #[unstable(feature = "i128", issue = "35118")]
+ #[stable(feature = "i128", since = "1.26.0")]
312
fn write_u128(&mut self, i: u128) {
313
self.write(&unsafe { mem::transmute::<_, [u8; 16]>(i) })
314
@@ -348,7 +348,7 @@ pub trait Hasher {
348
349
/// Writes a single `i128` into this hasher.
350
351
352
fn write_i128(&mut self, i: i128) {
353
self.write_u128(i as u128)
354
0 commit comments