mirror of
https://github.com/nushell/nushell.git
synced 2025-01-21 05:40:59 +01:00
5f550a355b
* Split OutputStream into ActionStream/OutputStream * Fmt * Missed update * Cleanup helper names * Fmt
60 lines
1.5 KiB
Rust
60 lines
1.5 KiB
Rust
use crate::prelude::*;
|
|
use nu_engine::WholeStreamCommand;
|
|
use nu_errors::ShellError;
|
|
use nu_protocol::{ReturnSuccess, Signature, UntaggedValue};
|
|
|
|
pub struct Reverse;
|
|
|
|
impl WholeStreamCommand for Reverse {
|
|
fn name(&self) -> &str {
|
|
"reverse"
|
|
}
|
|
|
|
fn signature(&self) -> Signature {
|
|
Signature::build("reverse")
|
|
}
|
|
|
|
fn usage(&self) -> &str {
|
|
"Reverses the table."
|
|
}
|
|
|
|
fn run_with_actions(&self, args: CommandArgs) -> Result<ActionStream, ShellError> {
|
|
reverse(args)
|
|
}
|
|
|
|
fn examples(&self) -> Vec<Example> {
|
|
vec![Example {
|
|
description: "Sort list of numbers in descending file size",
|
|
example: "echo [3 1 2 19 0] | reverse",
|
|
result: Some(vec![
|
|
UntaggedValue::int(0).into(),
|
|
UntaggedValue::int(19).into(),
|
|
UntaggedValue::int(2).into(),
|
|
UntaggedValue::int(1).into(),
|
|
UntaggedValue::int(3).into(),
|
|
]),
|
|
}]
|
|
}
|
|
}
|
|
|
|
fn reverse(args: CommandArgs) -> Result<ActionStream, ShellError> {
|
|
let args = args.evaluate_once()?;
|
|
let (input, _args) = args.parts();
|
|
|
|
let input = input.collect::<Vec<_>>();
|
|
Ok((input.into_iter().rev().map(ReturnSuccess::value)).to_action_stream())
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::Reverse;
|
|
use super::ShellError;
|
|
|
|
#[test]
|
|
fn examples_work_as_expected() -> Result<(), ShellError> {
|
|
use crate::examples::test as test_examples;
|
|
|
|
test_examples(Reverse {})
|
|
}
|
|
}
|