1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 22:33:57 +02:00

Add ‘deepSeq’ primop

Note that unlike ‘lib.deepSeq’ in Nixpkgs, this handles cycles.
This commit is contained in:
Eelco Dolstra 2014-09-22 16:03:55 +02:00
parent 831fc8ea21
commit 0cd6596b0e
4 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1 @@
builtins.deepSeq (let as = { x = 123; y = as; }; in as) 456