feat(tvix/eval): implement builtins.catAttrs
Change-Id: Idf92ac82438fbfcf7b2f6e058830e4744637d8c6 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6262 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
This commit is contained in:
parent
aeea772b1c
commit
86b21f9c33
2 changed files with 18 additions and 1 deletions
|
|
@ -38,4 +38,8 @@ impl NixList {
|
|||
|
||||
NixList(stack_slice)
|
||||
}
|
||||
|
||||
pub fn into_iter(self) -> std::vec::IntoIter<Value> {
|
||||
self.0.into_iter()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue