feat(tvix/eval): Implement builtins.intersectAttrs

Change-Id: Iaba9bcfa19f283cd0c1931be2f211e2528a1a940
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6998
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
Reviewed-by: kanepyork <rikingcoding@gmail.com>
This commit is contained in:
Griffin Smith 2022-10-13 00:04:55 -04:00 committed by grfn
parent 03a3189a3d
commit 3f45f6191d
3 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1 @@
{ a = 100; b = 200; }

View file

@ -0,0 +1,3 @@
builtins.intersectAttrs
{ a = 1; b = 2; c = 3; }
{ a = 100; b = 200; d = 5; }