definition: |
trace :: String -> a -> a trace s x = unsafePerformIO (traceIO s >> return x) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Prints the first argument as a side effect and behaves as identity on the --- second argument. |
failfree: |
(_, _) |
indeterministic: |
might be indeterministic |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
trace |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> a -> a |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |