//! This module implements Nix lists. use std::fmt::Display; use super::Value; #[repr(transparent)] #[derive(Clone, Debug, PartialEq)] pub struct NixList(Vec); impl Display for NixList { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.write_str("[ ")?; for v in &self.0 { v.fmt(f)?; f.write_str(" ")?; } f.write_str("]") } } #[cfg(feature = "arbitrary")] mod arbitrary { use proptest::{ prelude::{any_with, Arbitrary}, strategy::{BoxedStrategy, Strategy}, }; use super::*; impl Arbitrary for NixList { type Parameters = as Arbitrary>::Parameters; type Strategy = BoxedStrategy; fn arbitrary_with(args: Self::Parameters) -> Self::Strategy { any_with::>(args).prop_map(Self).boxed() } } } impl NixList { pub fn concat(&self, other: &Self) -> Self { let mut lhs = self.clone(); let mut rhs = other.clone(); lhs.0.append(&mut rhs.0); lhs } pub fn len(&self) -> usize { self.0.len() } pub fn get(&self, i: usize) -> Option<&Value> { self.0.get(i) } pub fn construct(count: usize, stack_slice: Vec) -> Self { debug_assert!( count == stack_slice.len(), "NixList::construct called with count == {}, but slice.len() == {}", count, stack_slice.len(), ); NixList(stack_slice) } pub fn iter(&self) -> std::slice::Iter { self.0.iter() } pub fn into_iter(self) -> std::vec::IntoIter { self.0.into_iter() } }