Shrink the size of Expr (#12610)

# Description
Continuing from #12568, this PR further reduces the size of `Expr` from
64 to 40 bytes. It also reduces `Expression` from 128 to 96 bytes and
`Type` from 32 to 24 bytes.

This was accomplished by:
- for `Expr` with multiple fields (e.g., `Expr::Thing(A, B, C)`),
merging the fields into new AST struct types and then boxing this struct
(e.g. `Expr::Thing(Box<ABC>)`).
- replacing `Vec<T>` with `Box<[T]>` in multiple places. `Expr`s and
`Expression`s should rarely be mutated, if at all, so this optimization
makes sense.

By reducing the size of these types, I didn't notice a large performance
improvement (at least compared to #12568). But this PR does reduce the
memory usage of nushell. My config is somewhat light so I only noticed a
difference of 1.4MiB (38.9MiB vs 37.5MiB).

---------

Co-authored-by: Stefan Holderbach <sholderbach@users.noreply.github.com>
This commit is contained in:
Ian Manske 2024-04-24 15:46:35 +00:00 committed by GitHub
parent c52884b3c8
commit 9996e4a1f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
195 changed files with 688 additions and 601 deletions

View File

@ -12,7 +12,7 @@ impl Command for KeybindingsDefault {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.category(Category::Platform) .category(Category::Platform)
.input_output_types(vec![(Type::Nothing, Type::Table(vec![]))]) .input_output_types(vec![(Type::Nothing, Type::table())])
} }
fn usage(&self) -> &str { fn usage(&self) -> &str {

View File

@ -14,7 +14,7 @@ impl Command for KeybindingsList {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![(Type::Nothing, Type::Table(vec![]))]) .input_output_types(vec![(Type::Nothing, Type::table())])
.switch("modifiers", "list of modifiers", Some('m')) .switch("modifiers", "list of modifiers", Some('m'))
.switch("keycodes", "list of keycodes", Some('k')) .switch("keycodes", "list of keycodes", Some('k'))
.switch("modes", "list of edit modes", Some('o')) .switch("modes", "list of edit modes", Some('o'))

View File

@ -361,7 +361,7 @@ fn find_matching_block_end_in_expr(
Expr::Nothing => None, Expr::Nothing => None,
Expr::Garbage => None, Expr::Garbage => None,
Expr::Table(hdr, rows) => { Expr::Table(table) => {
if expr_last == global_cursor_offset { if expr_last == global_cursor_offset {
// cursor is at table end // cursor is at table end
Some(expr_first) Some(expr_first)
@ -370,11 +370,11 @@ fn find_matching_block_end_in_expr(
Some(expr_last) Some(expr_last)
} else { } else {
// cursor is inside table // cursor is inside table
for inner_expr in hdr { for inner_expr in table.columns.as_ref() {
find_in_expr_or_continue!(inner_expr); find_in_expr_or_continue!(inner_expr);
} }
for row in rows { for row in table.rows.as_ref() {
for inner_expr in row { for inner_expr in row.as_ref() {
find_in_expr_or_continue!(inner_expr); find_in_expr_or_continue!(inner_expr);
} }
} }

View File

@ -24,7 +24,7 @@ impl Command for ToNu {
.switch("tail", "shows tail rows", Some('t')) .switch("tail", "shows tail rows", Some('t'))
.input_output_types(vec![ .input_output_types(vec![
(Type::Custom("expression".into()), Type::Any), (Type::Custom("expression".into()), Type::Any),
(Type::Custom("dataframe".into()), Type::Table(vec![])), (Type::Custom("dataframe".into()), Type::table()),
]) ])
//.input_output_type(Type::Any, Type::Any) //.input_output_type(Type::Any, Type::Any)
.category(Category::Custom("dataframe".into())) .category(Category::Custom("dataframe".into()))

View File

@ -30,8 +30,8 @@ impl Command for BitsInto {
(Type::Duration, Type::String), (Type::Duration, Type::String),
(Type::String, Type::String), (Type::String, Type::String),
(Type::Bool, Type::String), (Type::Bool, Type::String),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) // TODO: supply exhaustive examples .allow_variants_without_examples(true) // TODO: supply exhaustive examples
.rest( .rest(

View File

@ -15,7 +15,7 @@ impl Command for Fmt {
fn signature(&self) -> nu_protocol::Signature { fn signature(&self) -> nu_protocol::Signature {
Signature::build("fmt") Signature::build("fmt")
.input_output_types(vec![(Type::Number, Type::Record(vec![]))]) .input_output_types(vec![(Type::Number, Type::record())])
.category(Category::Conversions) .category(Category::Conversions)
} }

View File

@ -16,7 +16,7 @@ impl Command for RollDown {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
// TODO: It also operates on List // TODO: It also operates on List
.input_output_types(vec![(Type::Table(vec![]), Type::Table(vec![]))]) .input_output_types(vec![(Type::table(), Type::table())])
.named("by", SyntaxShape::Int, "Number of rows to roll", Some('b')) .named("by", SyntaxShape::Int, "Number of rows to roll", Some('b'))
.category(Category::Filters) .category(Category::Filters)
} }

View File

@ -16,8 +16,8 @@ impl Command for RollLeft {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
]) ])
.named( .named(
"by", "by",

View File

@ -16,8 +16,8 @@ impl Command for RollRight {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
]) ])
.named( .named(
"by", "by",

View File

@ -16,7 +16,7 @@ impl Command for RollUp {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
// TODO: It also operates on List // TODO: It also operates on List
.input_output_types(vec![(Type::Table(vec![]), Type::Table(vec![]))]) .input_output_types(vec![(Type::table(), Type::table())])
.named("by", SyntaxShape::Int, "Number of rows to roll", Some('b')) .named("by", SyntaxShape::Int, "Number of rows to roll", Some('b'))
.category(Category::Filters) .category(Category::Filters)
} }

View File

@ -11,8 +11,8 @@ impl Command for Rotate {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("rotate") Signature::build("rotate")
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::Table(vec![])), (Type::record(), Type::table()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
]) ])
.switch("ccw", "rotate counter clockwise", None) .switch("ccw", "rotate counter clockwise", None)
.rest( .rest(

View File

@ -12,7 +12,7 @@ impl Command for UpdateCells {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("update cells") Signature::build("update cells")
.input_output_types(vec![(Type::Table(vec![]), Type::Table(vec![]))]) .input_output_types(vec![(Type::table(), Type::table())])
.required( .required(
"closure", "closure",
SyntaxShape::Closure(Some(vec![SyntaxShape::Any])), SyntaxShape::Closure(Some(vec![SyntaxShape::Any])),

View File

@ -10,7 +10,7 @@ impl Command for FromUrl {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("from url") Signature::build("from url")
.input_output_types(vec![(Type::String, Type::Record(vec![]))]) .input_output_types(vec![(Type::String, Type::record())])
.category(Category::Formats) .category(Category::Formats)
} }

View File

@ -46,8 +46,8 @@ impl Command for SubCommand {
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.category(Category::Platform) .category(Category::Platform)

View File

@ -17,8 +17,8 @@ impl Command for DecodeHex {
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
Type::List(Box::new(Type::Binary)), Type::List(Box::new(Type::Binary)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.rest( .rest(

View File

@ -17,8 +17,8 @@ impl Command for EncodeHex {
Type::List(Box::new(Type::Binary)), Type::List(Box::new(Type::Binary)),
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.rest( .rest(

View File

@ -13,8 +13,8 @@ impl Command for FormatPattern {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("format pattern") Signature::build("format pattern")
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::List(Box::new(Type::String))), (Type::table(), Type::List(Box::new(Type::String))),
(Type::Record(vec![]), Type::Any), (Type::record(), Type::Any),
]) ])
.required( .required(
"pattern", "pattern",

View File

@ -18,8 +18,8 @@ impl Command for SubCommand {
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.rest( .rest(

View File

@ -14,8 +14,8 @@ impl Command for SubCommand {
Signature::build("str kebab-case") Signature::build("str kebab-case")
.input_output_types(vec![ .input_output_types(vec![
(Type::String, Type::String), (Type::String, Type::String),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
( (
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),

View File

@ -14,8 +14,8 @@ impl Command for SubCommand {
Signature::build("str pascal-case") Signature::build("str pascal-case")
.input_output_types(vec![ .input_output_types(vec![
(Type::String, Type::String), (Type::String, Type::String),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
( (
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),

View File

@ -18,8 +18,8 @@ impl Command for SubCommand {
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.rest( .rest(

View File

@ -18,8 +18,8 @@ impl Command for SubCommand {
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.rest( .rest(

View File

@ -18,8 +18,8 @@ impl Command for SubCommand {
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.rest( .rest(

View File

@ -15,7 +15,7 @@ impl Command for LazyMake {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("lazy make") Signature::build("lazy make")
.input_output_types(vec![(Type::Nothing, Type::Record(vec![]))]) .input_output_types(vec![(Type::Nothing, Type::record())])
.required_named( .required_named(
"columns", "columns",
SyntaxShape::List(Box::new(SyntaxShape::String)), SyntaxShape::List(Box::new(SyntaxShape::String)),

View File

@ -16,7 +16,7 @@ impl Command for Version {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("version") Signature::build("version")
.input_output_types(vec![(Type::Nothing, Type::Record(vec![]))]) .input_output_types(vec![(Type::Nothing, Type::record())])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.category(Category::Core) .category(Category::Core)
} }

View File

@ -13,14 +13,17 @@ impl Command for PluginList {
Signature::build("plugin list") Signature::build("plugin list")
.input_output_type( .input_output_type(
Type::Nothing, Type::Nothing,
Type::Table(vec![ Type::Table(
[
("name".into(), Type::String), ("name".into(), Type::String),
("is_running".into(), Type::Bool), ("is_running".into(), Type::Bool),
("pid".into(), Type::Int), ("pid".into(), Type::Int),
("filename".into(), Type::String), ("filename".into(), Type::String),
("shell".into(), Type::String), ("shell".into(), Type::String),
("commands".into(), Type::List(Type::String.into())), ("commands".into(), Type::List(Type::String.into())),
]), ]
.into(),
),
) )
.category(Category::Plugin) .category(Category::Plugin)
} }

View File

@ -31,8 +31,8 @@ impl Command for BytesAdd {
Type::List(Box::new(Type::Binary)), Type::List(Box::new(Type::Binary)),
Type::List(Box::new(Type::Binary)), Type::List(Box::new(Type::Binary)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.required("data", SyntaxShape::Binary, "The binary to add.") .required("data", SyntaxShape::Binary, "The binary to add.")

View File

@ -41,8 +41,8 @@ impl Command for BytesAt {
Type::List(Box::new(Type::Binary)), Type::List(Box::new(Type::Binary)),
Type::List(Box::new(Type::Binary)), Type::List(Box::new(Type::Binary)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.required("range", SyntaxShape::Range, "The range to get bytes.") .required("range", SyntaxShape::Range, "The range to get bytes.")
.rest( .rest(

View File

@ -24,8 +24,8 @@ impl Command for BytesEndsWith {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("bytes ends-with") Signature::build("bytes ends-with")
.input_output_types(vec![(Type::Binary, Type::Bool), .input_output_types(vec![(Type::Binary, Type::Bool),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.required("pattern", SyntaxShape::Binary, "The pattern to match.") .required("pattern", SyntaxShape::Binary, "The pattern to match.")

View File

@ -28,8 +28,8 @@ impl Command for BytesIndexOf {
(Type::Binary, Type::Any), (Type::Binary, Type::Any),
// FIXME: this shouldn't be needed, cell paths should work with the two // FIXME: this shouldn't be needed, cell paths should work with the two
// above // above
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.required( .required(

View File

@ -17,8 +17,8 @@ impl Command for BytesLen {
Type::List(Box::new(Type::Binary)), Type::List(Box::new(Type::Binary)),
Type::List(Box::new(Type::Int)), Type::List(Box::new(Type::Int)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.rest( .rest(

View File

@ -26,8 +26,8 @@ impl Command for BytesRemove {
Signature::build("bytes remove") Signature::build("bytes remove")
.input_output_types(vec![ .input_output_types(vec![
(Type::Binary, Type::Binary), (Type::Binary, Type::Binary),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.required("pattern", SyntaxShape::Binary, "The pattern to find.") .required("pattern", SyntaxShape::Binary, "The pattern to find.")
.rest( .rest(

View File

@ -26,8 +26,8 @@ impl Command for BytesReplace {
Signature::build("bytes replace") Signature::build("bytes replace")
.input_output_types(vec![ .input_output_types(vec![
(Type::Binary, Type::Binary), (Type::Binary, Type::Binary),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.required("find", SyntaxShape::Binary, "The pattern to find.") .required("find", SyntaxShape::Binary, "The pattern to find.")

View File

@ -13,8 +13,8 @@ impl Command for BytesReverse {
Signature::build("bytes reverse") Signature::build("bytes reverse")
.input_output_types(vec![ .input_output_types(vec![
(Type::Binary, Type::Binary), (Type::Binary, Type::Binary),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.rest( .rest(

View File

@ -25,8 +25,8 @@ impl Command for BytesStartsWith {
Signature::build("bytes starts-with") Signature::build("bytes starts-with")
.input_output_types(vec![ .input_output_types(vec![
(Type::Binary, Type::Bool), (Type::Binary, Type::Bool),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.required("pattern", SyntaxShape::Binary, "The pattern to match.") .required("pattern", SyntaxShape::Binary, "The pattern to match.")

View File

@ -19,7 +19,7 @@ impl Command for Histogram {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("histogram") Signature::build("histogram")
.input_output_types(vec![(Type::List(Box::new(Type::Any)), Type::Table(vec![])),]) .input_output_types(vec![(Type::List(Box::new(Type::Any)), Type::table()),])
.optional("column-name", SyntaxShape::String, "Column name to calc frequency, no need to provide if input is a list.") .optional("column-name", SyntaxShape::String, "Column name to calc frequency, no need to provide if input is a list.")
.optional("frequency-column-name", SyntaxShape::String, "Histogram's frequency column, default to be frequency column output.") .optional("frequency-column-name", SyntaxShape::String, "Histogram's frequency column, default to be frequency column output.")
.named("percentage-type", SyntaxShape::String, "percentage calculate method, can be 'normalize' or 'relative', in 'normalize', defaults to be 'normalize'", Some('t')) .named("percentage-type", SyntaxShape::String, "percentage calculate method, can be 'normalize' or 'relative', in 'normalize', defaults to be 'normalize'", Some('t'))

View File

@ -30,8 +30,8 @@ impl Command for SubCommand {
(Type::Bool, Type::Binary), (Type::Bool, Type::Binary),
(Type::Filesize, Type::Binary), (Type::Filesize, Type::Binary),
(Type::Date, Type::Binary), (Type::Date, Type::Binary),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) // TODO: supply exhaustive examples .allow_variants_without_examples(true) // TODO: supply exhaustive examples
.switch("compact", "output without padding zeros", Some('c')) .switch("compact", "output without padding zeros", Some('c'))

View File

@ -16,9 +16,9 @@ impl Command for SubCommand {
(Type::Number, Type::Bool), (Type::Number, Type::Bool),
(Type::String, Type::Bool), (Type::String, Type::Bool),
(Type::Bool, Type::Bool), (Type::Bool, Type::Bool),
(Type::List(Box::new(Type::Any)), Type::Table(vec![])), (Type::List(Box::new(Type::Any)), Type::table()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.rest( .rest(

View File

@ -15,10 +15,9 @@ impl Command for IntoCellPath {
(Type::Int, Type::CellPath), (Type::Int, Type::CellPath),
(Type::List(Box::new(Type::Any)), Type::CellPath), (Type::List(Box::new(Type::Any)), Type::CellPath),
( (
Type::List(Box::new(Type::Record(vec![ Type::List(Box::new(Type::Record(
("value".into(), Type::Any), [("value".into(), Type::Any), ("optional".into(), Type::Bool)].into(),
("optional".into(), Type::Bool), ))),
]))),
Type::CellPath, Type::CellPath,
), ),
]) ])

View File

@ -62,8 +62,8 @@ impl Command for SubCommand {
(Type::Int, Type::Date), (Type::Int, Type::Date),
(Type::String, Type::Date), (Type::String, Type::Date),
(Type::List(Box::new(Type::String)), Type::List(Box::new(Type::Date))), (Type::List(Box::new(Type::String)), Type::List(Box::new(Type::Date))),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.named( .named(

View File

@ -17,9 +17,9 @@ impl Command for SubCommand {
(Type::Int, Type::Duration), (Type::Int, Type::Duration),
(Type::String, Type::Duration), (Type::String, Type::Duration),
(Type::Duration, Type::Duration), (Type::Duration, Type::Duration),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
//todo: record<hour,minute,sign> | into duration -> Duration //todo: record<hour,minute,sign> | into duration -> Duration
//(Type::Record(vec![]), Type::Record(vec![])), //(Type::record(), Type::record()),
]) ])
//.allow_variants_without_examples(true) //.allow_variants_without_examples(true)
.named( .named(
@ -203,9 +203,9 @@ fn string_to_duration(s: &str, span: Span) -> Result<i64, ShellError> {
Type::Duration, Type::Duration,
|x| x, |x| x,
) { ) {
if let Expr::ValueWithUnit(value, unit) = expression.expr { if let Expr::ValueWithUnit(value) = expression.expr {
if let Expr::Int(x) = value.expr { if let Expr::Int(x) = value.expr.expr {
match unit.item { match value.unit.item {
Unit::Nanosecond => return Ok(x), Unit::Nanosecond => return Ok(x),
Unit::Microsecond => return Ok(x * 1000), Unit::Microsecond => return Ok(x * 1000),
Unit::Millisecond => return Ok(x * 1000 * 1000), Unit::Millisecond => return Ok(x * 1000 * 1000),

View File

@ -18,8 +18,8 @@ impl Command for SubCommand {
(Type::Number, Type::Filesize), (Type::Number, Type::Filesize),
(Type::String, Type::Filesize), (Type::String, Type::Filesize),
(Type::Filesize, Type::Filesize), (Type::Filesize, Type::Filesize),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
( (
Type::List(Box::new(Type::Int)), Type::List(Box::new(Type::Int)),
Type::List(Box::new(Type::Filesize)), Type::List(Box::new(Type::Filesize)),

View File

@ -16,8 +16,8 @@ impl Command for SubCommand {
(Type::String, Type::Float), (Type::String, Type::Float),
(Type::Bool, Type::Float), (Type::Bool, Type::Float),
(Type::Float, Type::Float), (Type::Float, Type::Float),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Float)), Type::List(Box::new(Type::Float)),

View File

@ -27,8 +27,8 @@ impl Command for SubCommand {
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
Type::List(Box::new(Type::Glob)), Type::List(Box::new(Type::Glob)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) // https://github.com/nushell/nushell/issues/7032 .allow_variants_without_examples(true) // https://github.com/nushell/nushell/issues/7032
.rest( .rest(

View File

@ -36,8 +36,8 @@ impl Command for SubCommand {
(Type::Duration, Type::Int), (Type::Duration, Type::Int),
(Type::Filesize, Type::Int), (Type::Filesize, Type::Int),
(Type::Binary, Type::Int), (Type::Binary, Type::Int),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
( (
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
Type::List(Box::new(Type::Int)), Type::List(Box::new(Type::Int)),

View File

@ -13,11 +13,11 @@ impl Command for SubCommand {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("into record") Signature::build("into record")
.input_output_types(vec![ .input_output_types(vec![
(Type::Date, Type::Record(vec![])), (Type::Date, Type::record()),
(Type::Duration, Type::Record(vec![])), (Type::Duration, Type::record()),
(Type::List(Box::new(Type::Any)), Type::Record(vec![])), (Type::List(Box::new(Type::Any)), Type::record()),
(Type::Range, Type::Record(vec![])), (Type::Range, Type::record()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.category(Category::Conversions) .category(Category::Conversions)
} }

View File

@ -40,8 +40,8 @@ impl Command for SubCommand {
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::String)), Type::List(Box::new(Type::String)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.allow_variants_without_examples(true) // https://github.com/nushell/nushell/issues/7032 .allow_variants_without_examples(true) // https://github.com/nushell/nushell/issues/7032
.rest( .rest(

View File

@ -15,7 +15,7 @@ impl Command for IntoValue {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("into value") Signature::build("into value")
.input_output_types(vec![(Type::Table(vec![]), Type::Table(vec![]))]) .input_output_types(vec![(Type::table(), Type::table())])
.named( .named(
"columns", "columns",
SyntaxShape::Table(vec![]), SyntaxShape::Table(vec![]),

View File

@ -24,8 +24,8 @@ impl Command for IntoSqliteDb {
Signature::build("into sqlite") Signature::build("into sqlite")
.category(Category::Conversions) .category(Category::Conversions)
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::Nothing), (Type::table(), Type::Nothing),
(Type::Record(vec![]), Type::Nothing), (Type::record(), Type::Nothing),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.required( .required(

View File

@ -11,7 +11,7 @@ impl Command for SubCommand {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("date list-timezone") Signature::build("date list-timezone")
.input_output_types(vec![(Type::Nothing, Type::Table(vec![]))]) .input_output_types(vec![(Type::Nothing, Type::table())])
.category(Category::Date) .category(Category::Date)
} }

View File

@ -13,8 +13,8 @@ impl Command for SubCommand {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("date to-record") Signature::build("date to-record")
.input_output_types(vec![ .input_output_types(vec![
(Type::Date, Type::Record(vec![])), (Type::Date, Type::record()),
(Type::String, Type::Record(vec![])), (Type::String, Type::record()),
]) ])
.allow_variants_without_examples(true) // https://github.com/nushell/nushell/issues/7032 .allow_variants_without_examples(true) // https://github.com/nushell/nushell/issues/7032
.category(Category::Date) .category(Category::Date)

View File

@ -13,8 +13,8 @@ impl Command for SubCommand {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("date to-table") Signature::build("date to-table")
.input_output_types(vec![ .input_output_types(vec![
(Type::Date, Type::Table(vec![])), (Type::Date, Type::table()),
(Type::String, Type::Table(vec![])), (Type::String, Type::table()),
]) ])
.allow_variants_without_examples(true) // https://github.com/nushell/nushell/issues/7032 .allow_variants_without_examples(true) // https://github.com/nushell/nushell/issues/7032
.category(Category::Date) .category(Category::Date)

View File

@ -16,7 +16,7 @@ impl Command for Ast {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("ast") Signature::build("ast")
.input_output_types(vec![(Type::String, Type::Record(vec![]))]) .input_output_types(vec![(Type::String, Type::record())])
.required( .required(
"pipeline", "pipeline",
SyntaxShape::String, SyntaxShape::String,

View File

@ -31,7 +31,7 @@ impl Command for DebugInfo {
fn signature(&self) -> nu_protocol::Signature { fn signature(&self) -> nu_protocol::Signature {
Signature::build("debug info") Signature::build("debug info")
.input_output_types(vec![(Type::Nothing, Type::Record(vec![]))]) .input_output_types(vec![(Type::Nothing, Type::record())])
.category(Category::Debug) .category(Category::Debug)
} }

View File

@ -18,7 +18,7 @@ impl Command for Metadata {
fn signature(&self) -> nu_protocol::Signature { fn signature(&self) -> nu_protocol::Signature {
Signature::build("metadata") Signature::build("metadata")
.input_output_types(vec![(Type::Any, Type::Record(vec![]))]) .input_output_types(vec![(Type::Any, Type::record())])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.optional( .optional(
"expression", "expression",

View File

@ -34,7 +34,7 @@ impl Command for DebugProfile {
"How many blocks/closures deep to step into (default 2)", "How many blocks/closures deep to step into (default 2)",
Some('m'), Some('m'),
) )
.input_output_types(vec![(Type::Any, Type::Table(vec![]))]) .input_output_types(vec![(Type::Any, Type::table())])
.category(Category::Debug) .category(Category::Debug)
} }

View File

@ -20,12 +20,15 @@ impl Command for ViewFiles {
Signature::build("view files") Signature::build("view files")
.input_output_types(vec![( .input_output_types(vec![(
Type::Nothing, Type::Nothing,
Type::Table(vec![ Type::Table(
[
("filename".into(), Type::String), ("filename".into(), Type::String),
("start".into(), Type::Int), ("start".into(), Type::Int),
("end".into(), Type::Int), ("end".into(), Type::Int),
("size".into(), Type::Int), ("size".into(), Type::Int),
]), ]
.into(),
),
)]) )])
.category(Category::Debug) .category(Category::Debug)
} }

View File

@ -15,7 +15,7 @@ impl Command for LoadEnv {
fn signature(&self) -> nu_protocol::Signature { fn signature(&self) -> nu_protocol::Signature {
Signature::build("load-env") Signature::build("load-env")
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::Nothing), (Type::record(), Type::Nothing),
(Type::Nothing, Type::Nothing), (Type::Nothing, Type::Nothing),
]) ])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)

View File

@ -33,7 +33,7 @@ impl Command for Du {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("du") Signature::build("du")
.input_output_types(vec![(Type::Nothing, Type::Table(vec![]))]) .input_output_types(vec![(Type::Nothing, Type::table())])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.rest( .rest(
"path", "path",

View File

@ -45,7 +45,7 @@ impl Command for Ls {
fn signature(&self) -> nu_protocol::Signature { fn signature(&self) -> nu_protocol::Signature {
Signature::build("ls") Signature::build("ls")
.input_output_types(vec![(Type::Nothing, Type::Table(vec![]))]) .input_output_types(vec![(Type::Nothing, Type::table())])
// LsGlobPattern is similar to string, it won't auto-expand // LsGlobPattern is similar to string, it won't auto-expand
// and we use it to track if the user input is quoted. // and we use it to track if the user input is quoted.
.rest("pattern", SyntaxShape::OneOf(vec![SyntaxShape::GlobPattern, SyntaxShape::String]), "The glob pattern to use.") .rest("pattern", SyntaxShape::OneOf(vec![SyntaxShape::GlobPattern, SyntaxShape::String]), "The glob pattern to use.")

View File

@ -38,7 +38,7 @@ impl Command for Watch {
fn signature(&self) -> nu_protocol::Signature { fn signature(&self) -> nu_protocol::Signature {
Signature::build("watch") Signature::build("watch")
.input_output_types(vec![(Type::Nothing, Type::Table(vec![]))]) .input_output_types(vec![(Type::Nothing, Type::table())])
.required("path", SyntaxShape::Filepath, "The path to watch. Can be a file or directory.") .required("path", SyntaxShape::Filepath, "The path to watch. Can be a file or directory.")
.required("closure", .required("closure",
SyntaxShape::Closure(Some(vec![SyntaxShape::String, SyntaxShape::String, SyntaxShape::String])), SyntaxShape::Closure(Some(vec![SyntaxShape::String, SyntaxShape::String, SyntaxShape::String])),

View File

@ -11,8 +11,8 @@ impl Command for Columns {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::List(Box::new(Type::String))), (Type::table(), Type::List(Box::new(Type::String))),
(Type::Record(vec![]), Type::List(Box::new(Type::String))), (Type::record(), Type::List(Box::new(Type::String))),
]) ])
.category(Category::Filters) .category(Category::Filters)
} }

View File

@ -13,8 +13,8 @@ impl Command for DropColumn {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
]) ])
.optional( .optional(
"columns", "columns",

View File

@ -11,7 +11,7 @@ impl Command for Drop {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("drop") Signature::build("drop")
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),

View File

@ -35,7 +35,7 @@ with 'transpose' first."#
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
), ),
(Type::Table(vec![]), Type::List(Box::new(Type::Any))), (Type::table(), Type::List(Box::new(Type::Any))),
(Type::Any, Type::Any), (Type::Any, Type::Any),
]) ])
.required( .required(

View File

@ -18,7 +18,7 @@ impl Command for Enumerate {
fn signature(&self) -> nu_protocol::Signature { fn signature(&self) -> nu_protocol::Signature {
Signature::build("enumerate") Signature::build("enumerate")
.input_output_types(vec![(Type::Any, Type::Table(vec![]))]) .input_output_types(vec![(Type::Any, Type::table())])
.category(Category::Filters) .category(Category::Filters)
} }

View File

@ -17,7 +17,7 @@ impl Command for Flatten {
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
), ),
(Type::Record(vec![]), Type::Table(vec![])), (Type::record(), Type::table()),
]) ])
.rest( .rest(
"rest", "rest",

View File

@ -27,8 +27,8 @@ If multiple cell paths are given, this will produce a list of values."#
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::Any, Type::Any,
), ),
(Type::Table(vec![]), Type::Any), (Type::table(), Type::Any),
(Type::Record(vec![]), Type::Any), (Type::record(), Type::Any),
]) ])
.required( .required(
"cell_path", "cell_path",

View File

@ -12,11 +12,11 @@ impl Command for Headers {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
( (
// Tables with missing values are List<Any> // Tables with missing values are List<Any>
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::Table(vec![]), Type::table(),
), ),
]) ])
.category(Category::Filters) .category(Category::Filters)

View File

@ -12,8 +12,8 @@ impl Command for Insert {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("insert") Signature::build("insert")
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),

View File

@ -12,7 +12,7 @@ impl Command for Items {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![(Type::Record(vec![]), Type::Any)]) .input_output_types(vec![(Type::record(), Type::Any)])
.required( .required(
"closure", "closure",
SyntaxShape::Closure(Some(vec![SyntaxShape::Any, SyntaxShape::Any])), SyntaxShape::Closure(Some(vec![SyntaxShape::Any, SyntaxShape::Any])),

View File

@ -46,7 +46,7 @@ impl Command for Join {
.switch("left", "Left-outer join", Some('l')) .switch("left", "Left-outer join", Some('l'))
.switch("right", "Right-outer join", Some('r')) .switch("right", "Right-outer join", Some('r'))
.switch("outer", "Outer join", Some('o')) .switch("outer", "Outer join", Some('o'))
.input_output_types(vec![(Type::Table(vec![]), Type::Table(vec![]))]) .input_output_types(vec![(Type::table(), Type::table())])
.category(Category::Filters) .category(Category::Filters)
} }

View File

@ -23,8 +23,8 @@ repeating this process with row 1, and so on."#
fn signature(&self) -> nu_protocol::Signature { fn signature(&self) -> nu_protocol::Signature {
Signature::build("merge") Signature::build("merge")
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
]) ])
.required( .required(
"value", "value",

View File

@ -21,8 +21,8 @@ impl Command for Move {
fn signature(&self) -> nu_protocol::Signature { fn signature(&self) -> nu_protocol::Signature {
Signature::build("move") Signature::build("move")
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
]) ])
.rest("columns", SyntaxShape::String, "The columns to move.") .rest("columns", SyntaxShape::String, "The columns to move.")
.named( .named(

View File

@ -22,7 +22,7 @@ impl Command for ParEach {
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
), ),
(Type::Table(vec![]), Type::List(Box::new(Type::Any))), (Type::table(), Type::List(Box::new(Type::Any))),
(Type::Any, Type::Any), (Type::Any, Type::Any),
]) ])
.named( .named(

View File

@ -13,7 +13,7 @@ impl Command for Reduce {
Signature::build("reduce") Signature::build("reduce")
.input_output_types(vec![ .input_output_types(vec![
(Type::List(Box::new(Type::Any)), Type::Any), (Type::List(Box::new(Type::Any)), Type::Any),
(Type::Table(vec![]), Type::Any), (Type::table(), Type::Any),
(Type::Range, Type::Any), (Type::Range, Type::Any),
]) ])
.named( .named(

View File

@ -13,8 +13,8 @@ impl Command for Reject {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("reject") Signature::build("reject")
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
]) ])
.switch( .switch(
"ignore-errors", "ignore-errors",

View File

@ -13,8 +13,8 @@ impl Command for Rename {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("rename") Signature::build("rename")
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
]) ])
.named( .named(
"column", "column",

View File

@ -14,8 +14,8 @@ impl Command for Select {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("select") Signature::build("select")
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::List(Box::new(Type::Any)), Type::Any), (Type::List(Box::new(Type::Any)), Type::Any),
]) ])
.switch( .switch(

View File

@ -11,7 +11,7 @@ impl Command for Skip {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),

View File

@ -12,7 +12,7 @@ impl Command for SkipUntil {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),

View File

@ -12,7 +12,7 @@ impl Command for SkipWhile {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),

View File

@ -17,7 +17,7 @@ impl Command for Sort {
.input_output_types(vec![( .input_output_types(vec![(
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
), (Type::Record(vec![]), Type::Record(vec![])),]) ), (Type::record(), Type::record()),])
.switch("reverse", "Sort in reverse order", Some('r')) .switch("reverse", "Sort in reverse order", Some('r'))
.switch( .switch(
"ignore-case", "ignore-case",

View File

@ -15,8 +15,8 @@ impl Command for SortBy {
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
), ),
(Type::Record(vec![]), Type::Table(vec![])), (Type::record(), Type::table()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
]) ])
.rest("columns", SyntaxShape::Any, "The column(s) to sort by.") .rest("columns", SyntaxShape::Any, "The column(s) to sort by.")
.switch("reverse", "Sort in reverse order", Some('r')) .switch("reverse", "Sort in reverse order", Some('r'))

View File

@ -11,7 +11,7 @@ impl Command for SplitBy {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("split-by") Signature::build("split-by")
.input_output_types(vec![(Type::Record(vec![]), Type::Record(vec![]))]) .input_output_types(vec![(Type::record(), Type::record())])
.optional("splitter", SyntaxShape::Any, "The splitter value to use.") .optional("splitter", SyntaxShape::Any, "The splitter value to use.")
.category(Category::Filters) .category(Category::Filters)
} }

View File

@ -11,7 +11,7 @@ impl Command for Take {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("take") Signature::build("take")
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),

View File

@ -12,7 +12,7 @@ impl Command for TakeUntil {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),

View File

@ -12,7 +12,7 @@ impl Command for TakeWhile {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),

View File

@ -20,8 +20,8 @@ impl Command for Transpose {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("transpose") Signature::build("transpose")
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::Any), (Type::table(), Type::Any),
(Type::Record(vec![]), Type::Table(vec![])), (Type::record(), Type::table()),
]) ])
.switch( .switch(
"header-row", "header-row",

View File

@ -12,7 +12,7 @@ impl Command for UniqBy {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("uniq-by") Signature::build("uniq-by")
.input_output_types(vec![ .input_output_types(vec![
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),

View File

@ -12,8 +12,8 @@ impl Command for Update {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("update") Signature::build("update")
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),

View File

@ -12,8 +12,8 @@ impl Command for Upsert {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("upsert") Signature::build("upsert")
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::Record(vec![])), (Type::record(), Type::record()),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
( (
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),

View File

@ -12,8 +12,8 @@ impl Command for Values {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build(self.name()) Signature::build(self.name())
.input_output_types(vec![ .input_output_types(vec![
(Type::Record(vec![]), Type::List(Box::new(Type::Any))), (Type::record(), Type::List(Box::new(Type::Any))),
(Type::Table(vec![]), Type::List(Box::new(Type::Any))), (Type::table(), Type::List(Box::new(Type::Any))),
]) ])
.category(Category::Filters) .category(Category::Filters)
} }

View File

@ -26,7 +26,7 @@ not supported."#
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
Type::List(Box::new(Type::Any)), Type::List(Box::new(Type::Any)),
), ),
(Type::Table(vec![]), Type::Table(vec![])), (Type::table(), Type::table()),
(Type::Range, Type::Any), (Type::Range, Type::Any),
]) ])
.required( .required(

View File

@ -15,9 +15,9 @@ impl Command for Wrap {
fn signature(&self) -> nu_protocol::Signature { fn signature(&self) -> nu_protocol::Signature {
Signature::build("wrap") Signature::build("wrap")
.input_output_types(vec![ .input_output_types(vec![
(Type::List(Box::new(Type::Any)), Type::Table(vec![])), (Type::List(Box::new(Type::Any)), Type::table()),
(Type::Range, Type::Table(vec![])), (Type::Range, Type::table()),
(Type::Any, Type::Record(vec![])), (Type::Any, Type::record()),
]) ])
.required("name", SyntaxShape::String, "The name of the column.") .required("name", SyntaxShape::String, "The name of the column.")
.allow_variants_without_examples(true) .allow_variants_without_examples(true)

View File

@ -11,7 +11,7 @@ impl Command for FromCsv {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("from csv") Signature::build("from csv")
.input_output_types(vec![(Type::String, Type::Table(vec![]))]) .input_output_types(vec![(Type::String, Type::table())])
.named( .named(
"separator", "separator",
SyntaxShape::String, SyntaxShape::String,

View File

@ -14,7 +14,7 @@ impl Command for FromOds {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("from ods") Signature::build("from ods")
.input_output_types(vec![(Type::String, Type::Table(vec![]))]) .input_output_types(vec![(Type::String, Type::table())])
.allow_variants_without_examples(true) .allow_variants_without_examples(true)
.named( .named(
"sheets", "sheets",

View File

@ -13,7 +13,7 @@ impl Command for FromSsv {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("from ssv") Signature::build("from ssv")
.input_output_types(vec![(Type::String, Type::Table(vec![]))]) .input_output_types(vec![(Type::String, Type::table())])
.switch( .switch(
"noheaders", "noheaders",
"don't treat the first row as column names", "don't treat the first row as column names",

View File

@ -11,7 +11,7 @@ impl Command for FromToml {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("from toml") Signature::build("from toml")
.input_output_types(vec![(Type::String, Type::Record(vec![]))]) .input_output_types(vec![(Type::String, Type::record())])
.category(Category::Formats) .category(Category::Formats)
} }

View File

@ -11,7 +11,7 @@ impl Command for FromTsv {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("from tsv") Signature::build("from tsv")
.input_output_types(vec![(Type::String, Type::Table(vec![]))]) .input_output_types(vec![(Type::String, Type::table())])
.named( .named(
"comment", "comment",
SyntaxShape::String, SyntaxShape::String,

Some files were not shown because too many files have changed in this diff Show More