traceValSeqFn
lib.traceValSeqFn
Docs pulled from | This Revision | 10 minutes ago
A combination of traceVal
and traceSeq
that applies a
provided function to the value to be traced after deepSeq
ing
it.
Inputs
f
-
Function to apply
v
-
Value to trace
Noogle detected
Implementation
The following is the current implementation of this function.
traceValSeqFn =
f:
v: traceValFn f (builtins.deepSeq v v);