rune_alloc/vec/
partial_eq.rs
1use crate::alloc::Allocator;
2
3use super::Vec;
4
5macro_rules! __impl_slice_eq1 {
6 ([$($vars:tt)*] $lhs:ty, $rhs:ty $(where $ty:ty: $bound:ident)?) => {
7 impl<T, U, $($vars)*> PartialEq<$rhs> for $lhs
8 where
9 T: PartialEq<U>,
10 $($ty: $bound)?
11 {
12 #[inline]
13 fn eq(&self, other: &$rhs) -> bool { self[..] == other[..] }
14 #[inline]
15 #[allow(clippy::partialeq_ne_impl)]
16 fn ne(&self, other: &$rhs) -> bool { self[..] != other[..] }
17 }
18 }
19}
20
21#[cfg(feature = "alloc")]
22__impl_slice_eq1! { [A: Allocator] Vec<T, A>, ::rust_alloc::vec::Vec<U> }
23#[cfg(feature = "alloc")]
24__impl_slice_eq1! { [A: Allocator] ::rust_alloc::vec::Vec<T>, Vec<U, A> }
25__impl_slice_eq1! { [A1: Allocator, A2: Allocator] Vec<T, A1>, Vec<U, A2> }
26__impl_slice_eq1! { [A: Allocator] Vec<T, A>, &[U] }
27__impl_slice_eq1! { [A: Allocator] Vec<T, A>, &mut [U] }
28__impl_slice_eq1! { [A: Allocator] &[T], Vec<U, A> }
29__impl_slice_eq1! { [A: Allocator] &mut [T], Vec<U, A> }
30__impl_slice_eq1! { [A: Allocator] Vec<T, A>, [U] }
31__impl_slice_eq1! { [A: Allocator] [T], Vec<U, A> }
32__impl_slice_eq1! { [A: Allocator, const N: usize] Vec<T, A>, [U; N] }
33__impl_slice_eq1! { [A: Allocator, const N: usize] Vec<T, A>, &[U; N] }