pub unsafe fn binary_unchecked_same_type<T, U, F>(
lhs: &ChunkedArray<T>,
rhs: &ChunkedArray<U>,
op: F,
keep_sorted: bool,
keep_fast_explode: bool,
) -> ChunkedArray<T>Expand description
Applies a kernel that produces ArrayRef of the same type.
ยงSafety
Caller must ensure that the returned ArrayRef belongs to T: PolarsDataType.