nushell/crates/nu-command/src/math/math_.rs

43 lines
1.0 KiB
Rust
Raw Normal View History

2021-10-25 01:58:18 +02:00
use nu_engine::get_full_help;
use nu_protocol::{
ast::Call,
engine::{Command, EngineState, Stack},
Category, IntoPipelineData, PipelineData, Signature, Value,
};
2021-10-25 01:58:18 +02:00
#[derive(Clone)]
2021-10-25 01:58:18 +02:00
pub struct MathCommand;
impl Command for MathCommand {
fn name(&self) -> &str {
"math"
}
fn signature(&self) -> Signature {
Signature::build("math").category(Category::Math)
2021-10-25 01:58:18 +02:00
}
fn usage(&self) -> &str {
"Use mathematical functions as aggregate functions on a list of numbers or tables."
}
fn run(
&self,
engine_state: &EngineState,
stack: &mut Stack,
2021-10-25 01:58:18 +02:00
call: &Call,
_input: PipelineData,
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
2021-10-25 01:58:18 +02:00
Ok(Value::String {
val: get_full_help(
&MathCommand.signature(),
&MathCommand.examples(),
engine_state,
stack,
),
2021-10-25 01:58:18 +02:00
span: call.head,
}
.into_pipeline_data())
2021-10-25 01:58:18 +02:00
}
}