arrow2 0.10.1

Unofficial implementation of Apache Arrow spec in safe Rust
Documentation
1
2
3
4
5
use crate::array::{Array, Offset, Utf8Array};

pub(super) fn equal<O: Offset>(lhs: &Utf8Array<O>, rhs: &Utf8Array<O>) -> bool {
    lhs.data_type() == rhs.data_type() && lhs.len() == rhs.len() && lhs.iter().eq(rhs.iter())
}