nushell/crates/nu-command/src/strings/encode_decode
Stefan Holderbach 9db0d6bd34
Adjust signatures for cellpath access of tables (#9778)
# Description
Reallow the commands that take cellpaths as rest parameters to operate
on table input data.

Went through all commands returned by

```
scope commands |
  filter { |cmd| $cmd.signatures |
    values |
    any {|sig| $sig |
      any {|$sig| $sig.parameter_type == rest and $sig.syntax_shape ==
cellpath }
    }
  } | get name
```

Only exception to that was `is-empty` that returns a bool.
# User-Facing Changes
Same table operations as in `0.82` should still be possible
Mitigates effects of #9680
2023-07-24 13:17:30 +02:00
..
base64.rs move common tools from nu-command to nu-cmd-base (#9455) 2023-06-22 14:45:54 -07:00
decode_base64.rs Adjust signatures for cellpath access of tables (#9778) 2023-07-24 13:17:30 +02:00
decode.rs Box ShellError in Value::Error (#8375) 2023-03-12 09:57:27 +01:00
encode_base64.rs Adjust signatures for cellpath access of tables (#9778) 2023-07-24 13:17:30 +02:00
encode.rs Box ShellError in Value::Error (#8375) 2023-03-12 09:57:27 +01:00
encoding.rs Use variable names directly in the format strings (#7906) 2023-01-29 19:37:54 -06:00
mod.rs REFACTOR: move the 0% commands to nu-cmd-extra (#9404) 2023-07-06 08:31:31 -07:00