Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-python/src/map/mod.rs
7889 views
1
pub mod lazy;
2
pub mod series;
3
4
use polars::prelude::*;
5
pub trait PyPolarsNumericType: PolarsNumericType {}
6
7
impl PyPolarsNumericType for UInt8Type {}
8
impl PyPolarsNumericType for UInt16Type {}
9
impl PyPolarsNumericType for UInt32Type {}
10
impl PyPolarsNumericType for UInt64Type {}
11
impl PyPolarsNumericType for UInt128Type {}
12
impl PyPolarsNumericType for Int8Type {}
13
impl PyPolarsNumericType for Int16Type {}
14
impl PyPolarsNumericType for Int32Type {}
15
impl PyPolarsNumericType for Int64Type {}
16
impl PyPolarsNumericType for Int128Type {}
17
impl PyPolarsNumericType for Float16Type {}
18
impl PyPolarsNumericType for Float32Type {}
19
impl PyPolarsNumericType for Float64Type {}
20
21