pub fn new_int_range<T>(
start: <T as PolarsNumericType>::Native,
end: <T as PolarsNumericType>::Native,
step: i64,
name: PlSmallStr,
) -> Result<Series, PolarsError>where
T: PolarsIntegerType,
ChunkedArray<T>: IntoSeries,
Range<<T as PolarsNumericType>::Native>: DoubleEndedIterator<Item = <T as PolarsNumericType>::Native>,
Available on crate feature
polars-ops
only.