use crate::commands::WholeStreamCommand; use crate::context::CommandRegistry; use crate::prelude::*; use indexmap::set::IndexSet; use nu_errors::ShellError; use nu_protocol::{ReturnSuccess, Signature}; pub struct Uniq; #[async_trait] impl WholeStreamCommand for Uniq { fn name(&self) -> &str { "uniq" } fn signature(&self) -> Signature { Signature::build("uniq") } fn usage(&self) -> &str { "Return the unique rows" } async fn run( &self, args: CommandArgs, registry: &CommandRegistry, ) -> Result { uniq(args, registry).await } } async fn uniq(args: CommandArgs, _registry: &CommandRegistry) -> Result { let input = args.input; let uniq_values: IndexSet<_> = input.collect().await; let mut values_vec_deque = VecDeque::new(); for item in uniq_values .iter() .map(|row| ReturnSuccess::value(row.clone())) { values_vec_deque.push_back(item); } Ok(futures::stream::iter(values_vec_deque).to_output_stream()) } #[cfg(test)] mod tests { use super::Uniq; #[test] fn examples_work_as_expected() { use crate::examples::test as test_examples; test_examples(Uniq {}) } }