* Added a primop `removeAttrs' to remove attributes from a set, e.g.,
`removeAttrs attrs ["x", "y"]' returns the set `attrs' with the attributes named `x' and `y' removed. It is not an error for the named attributes to be missing from the input set.
This commit is contained in:
parent
109cde6706
commit
040140dd1c
4 changed files with 29 additions and 0 deletions
5
tests/lang/eval-fail-remove.nix
Normal file
5
tests/lang/eval-fail-remove.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
let {
|
||||
attrs = {x = 123; y = 456;};
|
||||
|
||||
body = (removeAttrs attrs ["x"]).x;
|
||||
}
|
1
tests/lang/eval-okay-remove.exp
Normal file
1
tests/lang/eval-okay-remove.exp
Normal file
|
@ -0,0 +1 @@
|
|||
Int(456)
|
5
tests/lang/eval-okay-remove.nix
Normal file
5
tests/lang/eval-okay-remove.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
let {
|
||||
attrs = {x = 123; y = 456;};
|
||||
|
||||
body = (removeAttrs attrs ["x"]).y;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue