1pub mod lazy;
2pub mod series;
3
4use polars::prelude::*;
5pub trait PyPolarsNumericType: PolarsNumericType {}
6
7impl PyPolarsNumericType for UInt8Type {}
8impl PyPolarsNumericType for UInt16Type {}
9impl PyPolarsNumericType for UInt32Type {}
10impl PyPolarsNumericType for UInt64Type {}
11impl PyPolarsNumericType for UInt128Type {}
12impl PyPolarsNumericType for Int8Type {}
13impl PyPolarsNumericType for Int16Type {}
14impl PyPolarsNumericType for Int32Type {}
15impl PyPolarsNumericType for Int64Type {}
16impl PyPolarsNumericType for Int128Type {}
17impl PyPolarsNumericType for Float16Type {}
18impl PyPolarsNumericType for Float32Type {}
19impl PyPolarsNumericType for Float64Type {}