pub unsafe fn slice_sorted_non_null_and_offset<T>(
    ca: &ChunkedArray<T>
) -> (usize, ChunkedArray<T>)
where T: PolarsDataType,
Expand description

Get a slice of the non-null values of a sorted array. The returned array will have a single chunk.

§Safety

The array is sorted and has at least one non-null value.