Documentation
1
2
3
4
5
6
7
8
9
10
use crate::arr::vec::core::ArrVec;

impl<T> PartialEq for ArrVec<T>
where
    T: PartialEq,
{
    fn eq(&self, other: &Self) -> bool {
        self.buff == other.buff && self.shape == other.shape
    }
}