pub fn eager_int_range(
py: Python<'_>,
lower: &Bound<'_, PyAny>,
upper: &Bound<'_, PyAny>,
step: &Bound<'_, PyAny>,
dtype: Wrap<DataType>,
) -> PyResult<PySeries>
Expand description
Eager version of int_range
to avoid overhead from the expression engine.