diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-09-22T14·03+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-09-22T14·05+0200 |
commit | 0cd6596b0e75870dc59f17848c6c152e2b2c6dba (patch) | |
tree | 8c69bfc1e595187705b48790c3c1f71549981ce6 /src | |
parent | 831fc8ea21fc730388e9359fcafed279c8ec413d (diff) |
Add ‘deepSeq’ primop
Note that unlike ‘lib.deepSeq’ in Nixpkgs, this handles cycles.
Diffstat (limited to 'src')
-rw-r--r-- | src/libexpr/primops.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libexpr/primops.cc b/src/libexpr/primops.cc index 2da15b3c53eb..a25bd8854e0b 100644 --- a/src/libexpr/primops.cc +++ b/src/libexpr/primops.cc @@ -392,6 +392,16 @@ void prim_seq(EvalState & state, const Pos & pos, Value * * args, Value & v) } +/* Evaluate the first argument deeply (i.e. recursing into lists and + attrsets), then return the second argument. */ +void prim_deepSeq(EvalState & state, const Pos & pos, Value * * args, Value & v) +{ + state.forceValueDeep(*args[0]); + state.forceValue(*args[1]); + v = *args[1]; +} + + /* Evaluate the first expression and print it on standard error. Then return the second expression. Useful for debugging. */ static void prim_trace(EvalState & state, const Pos & pos, Value * * args, Value & v) @@ -1435,6 +1445,7 @@ void EvalState::createBaseEnv() // Strictness addPrimOp("__seq", 2, prim_seq); + addPrimOp("__deepSeq", 2, prim_deepSeq); // Debugging addPrimOp("__trace", 2, prim_trace); |