2021-10-25 01:58:18 +02:00
|
|
|
use nu_engine::get_full_help;
|
2021-10-26 01:56:22 +02:00
|
|
|
use nu_protocol::{
|
|
|
|
ast::Call,
|
|
|
|
engine::{Command, EngineState, Stack},
|
2021-11-17 05:22:37 +01:00
|
|
|
Category, IntoPipelineData, PipelineData, Signature, Value,
|
2021-10-26 01:56:22 +02:00
|
|
|
};
|
2021-10-25 01:58:18 +02:00
|
|
|
|
2021-10-26 01:56:22 +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 {
|
2021-11-17 05:22:37 +01:00
|
|
|
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,
|
2021-10-26 01:56:22 +02:00
|
|
|
engine_state: &EngineState,
|
|
|
|
_stack: &mut Stack,
|
2021-10-25 01:58:18 +02:00
|
|
|
call: &Call,
|
2021-10-26 01:56:22 +02:00
|
|
|
_input: PipelineData,
|
|
|
|
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
|
2021-10-25 01:58:18 +02:00
|
|
|
Ok(Value::String {
|
2021-10-26 01:56:22 +02:00
|
|
|
val: get_full_help(
|
|
|
|
&MathCommand.signature(),
|
|
|
|
&MathCommand.examples(),
|
|
|
|
engine_state,
|
|
|
|
),
|
2021-10-25 01:58:18 +02:00
|
|
|
span: call.head,
|
2021-10-26 01:56:22 +02:00
|
|
|
}
|
|
|
|
.into_pipeline_data())
|
2021-10-25 01:58:18 +02:00
|
|
|
}
|
|
|
|
}
|