forked from extern/nushell
* lazyframe definition * expressions and lazy frames * new alias expression * more expression commands * updated to polars main * more expressions and groupby * more expressions, fetch and sort-by * csv reader * removed open csv * unique function * joining functions * join lazy frames commands with eager commands * corrected tests * Update .gitignore * Update .gitignore Co-authored-by: JT <547158+jntrnr@users.noreply.github.com>
24 lines
488 B
Rust
24 lines
488 B
Rust
mod eager;
|
|
mod expressions;
|
|
mod lazy;
|
|
mod series;
|
|
mod utils;
|
|
mod values;
|
|
|
|
pub use eager::add_eager_decls;
|
|
pub use expressions::add_expressions;
|
|
pub use lazy::add_lazy_decls;
|
|
pub use series::add_series_decls;
|
|
|
|
use nu_protocol::engine::StateWorkingSet;
|
|
|
|
pub fn add_dataframe_decls(working_set: &mut StateWorkingSet) {
|
|
add_series_decls(working_set);
|
|
add_eager_decls(working_set);
|
|
add_expressions(working_set);
|
|
add_lazy_decls(working_set);
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test_dataframe;
|