align_chunks_binary_ca_series

Function align_chunks_binary_ca_series 

Source
pub fn align_chunks_binary_ca_series<'a, T>(
    left: &'a ChunkedArray<T>,
    right: &'a Series,
) -> (Cow<'a, ChunkedArray<T>>, Cow<'a, Series>)
where T: PolarsDataType,
Expand description

Ensure the chunks in ChunkedArray and Series have the same length.

ยงPanics

This will panic if left.len() != right.len() and array is chunked.