1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![feature(impl_trait_in_assoc_type)]
#![feature(associated_type_defaults)]
#![feature(vec_into_raw_parts)]

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 polars backend
// re-export nd_array backend
#[cfg(feature = "ndarray")]
pub use ndarray;
#[cfg(feature = "pl")]
pub use polars;
#[cfg(feature = "pl")]
pub use polars_arrow;