traceValSeqFn
lib.debug.traceValSeqFn
Docs pulled from | This Revision | 4 days ago
A combination of traceVal and traceSeq that applies a
provided function to the value to be traced after deepSeqing
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);