pub trait DataFrameIsSorted {
// Required method
fn is_sorted(
&self,
by: &[PlSmallStr],
descending: &[bool],
nulls_last: &[bool],
) -> Result<bool, PolarsError>;
}Available on crate feature
polars-ops only.