query
On this page

traceValSeqNFn

lib.traceValSeqNFn

Docs pulled from | This Revision | 21 minutes 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

(lib.debug.traceValSeqNFn)

Noogle detected

Aliases

Implementation

The following is the current implementation of this function.

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