Rollup merge of #61724 - aschampion:128-bit-memcmp, r=sfackler

core: use memcmp optimization for 128 bit integer slices

All other sized integer slices do this. From #61665.
This commit is contained in:
Mazdak Farrokhzad 2019-06-11 17:14:11 +02:00 committed by GitHub
commit 2f1d360206
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5420,7 +5420,7 @@ macro_rules! impl_marker_for {
}
impl_marker_for!(BytewiseEquality,
u8 i8 u16 i16 u32 i32 u64 i64 usize isize char bool);
u8 i8 u16 i16 u32 i32 u64 i64 u128 i128 usize isize char bool);
#[doc(hidden)]
unsafe impl<'a, T> TrustedRandomAccess for Iter<'a, T> {