Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-arrow/src/array/total_ord.rs
6939 views
1
use polars_utils::total_ord::TotalEq;
2
3
use crate::array::Array;
4
5
impl TotalEq for Box<dyn Array> {
6
fn tot_eq(&self, other: &Self) -> bool {
7
self == other
8
}
9
}
10
11