traceVal
lib.debug.traceVal
Docs pulled from | This Revision | 13 minutes ago
Trace the supplied value and return it.
Inputs
x
-
Value to trace and return
Type
traceVal :: a -> a
Examples
lib.debug.traceVal
usage example
traceVal 42
# trace: 42
=> 42
Noogle detected
Implementation
The following is the current implementation of this function.
traceVal = traceValFn id;