query
On this page

traceValSeqFn

lib.traceValSeqFn

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

(lib.debug.traceValSeqFn)

Noogle detected

Aliases

Implementation

The following is the current implementation of this function.

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