traceValSeqNFn
lib.traceValSeqNFn
Docs pulled from | This Revision | 4 days ago
A combination of traceVal and traceSeqN that applies a
provided function to the value to be traced.
Inputs
f-
Function to apply
depth-
2. Function argument
v-
Value to trace
Noogle detected
Implementation
The following is the current implementation of this function.
traceValSeqNFn =
f: depth: v:
traceSeqN depth (f v) v;