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
//! Element-wise UDFs for map() expressions (string, array, map, encoding, date, math, bit, etc.).

use polars::prelude::PolarsError;

pub(crate) fn compute_err(context: &str, e: impl std::fmt::Display) -> PolarsError {
    PolarsError::ComputeError(format!("{}: {}", context, e).into())
}

mod rest;
pub use rest::*;