1use polars_utils::total_ord::TotalEq; 2 3use crate::array::Array; 4 5impl TotalEq for Box<dyn Array> { 6 fn tot_eq(&self, other: &Self) -> bool { 7 self == other 8 } 9} 10 11