query
On this page

traceValSeq

lib.traceValSeq

Docs pulled from | This Revision | 15 minutes ago


Nixpkgs manual

A combination of traceVal and traceSeq.

Inputs

v

Value to trace

Type

traceValSeq :: a -> a

Examples

lib.debug.traceValSeq usage example

traceValSeq { a.b.c = 3; }
trace: { a = { b = { c = 3; }; }; }
=> { a = { ... }; }
(lib.debug.traceValSeq)

Noogle detected

Aliases

Implementation

The following is the current implementation of this function.

v: traceValFn f (builtins.deepSeq v v)