query
On this page

traceValSeqNFn

lib.debug.traceValSeqNFn

Docs pulled from | This Revision | about 1 hour 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

Aliases

Implementation

The following is the current implementation of this function.

traceValSeqNFn =
    f: depth: v:
    traceSeqN depth (f v) v;