nushell/crates/nu-cmd-dataframe/src/dataframe
Ian Manske baeba19b22
Make get_full_help take &dyn Command (#12903)
# Description
Changes `get_full_help` to take a `&dyn Command` instead of multiple
arguments (`&Signature`, `&Examples` `is_parser_keyword`). All of these
arguments can be gathered from a `Command`, so there is no need to pass
the pieces to `get_full_help`.

This PR also fixes an issue where the search terms are not shown if
`--help` is used on a command.
2024-05-19 19:56:33 +02:00
..
eager Replace ExternalStream with new ByteStream type (#12774) 2024-05-16 07:11:18 -07:00
expressions Replace ExternalStream with new ByteStream type (#12774) 2024-05-16 07:11:18 -07:00
lazy Replace ExternalStream with new ByteStream type (#12774) 2024-05-16 07:11:18 -07:00
series Replace ExternalStream with new ByteStream type (#12774) 2024-05-16 07:11:18 -07:00
values Add Span merging functions (#12511) 2024-05-16 22:34:49 +00:00
mod.rs Add a stub dfr command (#10683) 2023-10-11 17:51:20 +02:00
README.md move dataframe commands to nu-cmd-dataframe (#9241) 2023-05-19 10:56:08 -07:00
stub.rs Make get_full_help take &dyn Command (#12903) 2024-05-19 19:56:33 +02:00
test_dataframe.rs Replace ExternalStream with new ByteStream type (#12774) 2024-05-16 07:11:18 -07:00
utils.rs Make FromValue take owned Values (#10900) 2023-10-31 19:47:00 +01:00

Dataframe

This dataframe directory holds all of the definitions of the dataframe data structures and commands.

There are three sections of commands:

For more details see the Nushell book section on dataframes