nu-command 0.75.0

Nushell's built-in commands
Documentation
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;