mirror of
https://github.com/nushell/nushell.git
synced 2025-05-17 13:14:34 +00:00
* seq command - WIP * why, oh why * works with parameters * widths should've been optional * dbg messages * working. rest had to be first. * updated so that it outputs a table instead of just strings * made to work with floats, allowed separator be more than 1 char * clippy * fixed tests * changed terminator help desc * commit to get ci moving again
29 lines
1.0 KiB
Rust
29 lines
1.0 KiB
Rust
#[macro_use]
|
|
mod macros;
|
|
|
|
mod call_info;
|
|
pub mod hir;
|
|
mod maybe_owned;
|
|
mod return_value;
|
|
mod signature;
|
|
mod syntax_shape;
|
|
mod type_name;
|
|
mod type_shape;
|
|
pub mod value;
|
|
|
|
pub use crate::call_info::{CallInfo, EvaluatedArgs};
|
|
pub use crate::maybe_owned::MaybeOwned;
|
|
pub use crate::return_value::{CommandAction, ReturnSuccess, ReturnValue};
|
|
pub use crate::signature::{NamedType, PositionalType, Signature};
|
|
pub use crate::syntax_shape::SyntaxShape;
|
|
pub use crate::type_name::{PrettyType, ShellTypeName, SpannedTypeName};
|
|
pub use crate::type_shape::{Row as RowType, Type};
|
|
pub use crate::value::column_path::{ColumnPath, PathMember, UnspannedPathMember};
|
|
pub use crate::value::dict::{Dictionary, TaggedDictBuilder};
|
|
pub use crate::value::did_you_mean::did_you_mean;
|
|
pub use crate::value::evaluate::Scope;
|
|
pub use crate::value::primitive::Primitive;
|
|
pub use crate::value::primitive::{format_date, format_duration, format_primitive};
|
|
pub use crate::value::range::{Range, RangeInclusion};
|
|
pub use crate::value::{merge_descriptors, UntaggedValue, Value};
|