robin-sparkless-polars 4.8.0

Polars-backed DataFrame, Session, and expression layer for robin-sparkless.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Expression builders: sort, types, column refs/literals, agg, when, string, datetime, struct/map/array, cast, hash, misc.
//! Re-exports all public items so `use crate::functions::*` and `pub use functions::*` keep the same API.

mod sort;
pub use sort::*;

mod types;
pub use types::*;

mod column;
pub use column::*;

mod rest;
pub use rest::*;