definition: |
traceShow :: Show a => a -> b -> b traceShow a b = trace (show a) b |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Prints the first argument using `show` and returns the second argument --- afterwards. |
failfree: |
(_, _, _) |
indeterministic: |
might be indeterministic |
infix: |
no fixity defined |
iotype: |
{(_,_,_) |-> _} |
name: |
traceShow |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.Show a => a -> b -> b |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |