nushell/src/commands/first.rs

33 lines
840 B
Rust
Raw Normal View History

2019-05-15 18:12:38 +02:00
use crate::errors::ShellError;
2019-07-24 00:22:11 +02:00
use crate::parser::CommandRegistry;
2019-05-15 18:12:38 +02:00
use crate::prelude::*;
2019-07-24 00:22:11 +02:00
pub fn first(args: CommandArgs, registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
let args = args.evaluate_once(registry)?;
2019-06-22 05:43:37 +02:00
if args.len() == 0 {
return Err(ShellError::labeled_error(
2019-06-15 20:36:17 +02:00
"First requires an amount",
"needs parameter",
2019-07-24 00:22:11 +02:00
args.name_span(),
2019-06-15 20:36:17 +02:00
));
2019-06-08 00:35:07 +02:00
}
2019-06-22 05:43:37 +02:00
let amount = args.expect_nth(0)?.as_i64();
2019-06-08 00:35:07 +02:00
let amount = match amount {
Ok(o) => o,
Err(_) => {
return Err(ShellError::labeled_error(
"Value is not a number",
"expected integer",
2019-08-01 03:58:42 +02:00
args.expect_nth(0)?.span(),
2019-06-08 00:35:07 +02:00
))
}
};
2019-05-16 02:21:46 +02:00
2019-07-24 00:22:11 +02:00
Ok(OutputStream::from_input(
args.input.values.take(amount as u64),
))
2019-05-15 18:12:38 +02:00
}