1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
mod agg;
mod backends_impl;
mod create;
mod linspace;
mod vec_core;

pub use tea_dtype as dtype;

pub mod prelude;
pub mod testing;

// re-export nd_array backend
#[cfg(feature = "ndarray")]
pub use ndarray;
// re-export polars backend
#[cfg(feature = "pl")]
pub use polars;
#[cfg(feature = "pl")]
pub use polars_arrow;