swish-0.3.2.1: A semantic web toolkit.

PortabilityH98
Stabilityexperimental
MaintainerDouglas Burke

Swish.Utils.TraceHelpers

Description

This module is deprecated and will be removed in the next minor release of Swish (0.3.3).

Synopsis

Documentation

trace :: String -> a -> a

When called, trace outputs the string in its first argument, before returning the second argument as its result. The trace function is not referentially transparent, and should only be used for debugging, or for monitoring execution. Some implementations of trace may decorate the string that's output to indicate that you're tracing. The function is implemented on top of putTraceMsg.

traceShow :: Show a => String -> a -> aSource