query
On this page

traceValSeqFn

lib.debug.traceValSeqFn

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

Aliases

Implementation

The following is the current implementation of this function.

traceValSeqFn =
    f:
    v: traceValFn f (builtins.deepSeq v v);