gonix
/
tests
/
functional2
/
lang
/
builtins.removeAttrs
/
in-2.nix
1
2
3
4
let
attrs
=
{
x
=
123
;
y
=
456
;};
in
(
removeAttrs
attrs
[
"x"
])
.
y