33 lines
780 B
Rust
33 lines
780 B
Rust
use crate::errors::ShellError;
|
|
use crate::prelude::*;
|
|
|
|
pub fn skip(args: CommandArgs) -> Result<OutputStream, ShellError> {
|
|
if args.positional.len() == 0 {
|
|
return Err(ShellError::maybe_labeled_error(
|
|
"Skip requires an amount",
|
|
"needs parameter",
|
|
args.name_span,
|
|
));
|
|
}
|
|
|
|
let amount = args.positional[0].as_i64();
|
|
|
|
let amount = match amount {
|
|
Ok(o) => o,
|
|
Err(_) => {
|
|
return Err(ShellError::labeled_error(
|
|
"Value is not a number",
|
|
"expected integer",
|
|
args.positional[0].span,
|
|
))
|
|
}
|
|
};
|
|
|
|
let input = args.input;
|
|
|
|
Ok(input
|
|
.skip(amount as u64)
|
|
.map(|v| ReturnValue::Value(v))
|
|
.boxed())
|
|
}
|