debug-diff-0.1: Display a colorized diff between two Haskell values
Debug.Diff.Config
Description
Display the difference between two Haskell values, with control over the diff parameters.
Synopsis
data Config Source
Configuration of the diff command
Constructors
Fields
Lines of context, for a unified diff.
Diff command; colordiff by default.
colordiff
Extra arguments to the diff command.
Instances
defConfig :: ConfigSource
A default configuration.
diffWith :: (Show a, Show b) => Config -> a -> b -> IO ()Source
diff :: (Show a, Show b) => a -> b -> IO ()Source
Display a colorized diff between two Haskell values.