Safe Haskell | Safe-Inferred |
---|
Documentation
class Show a => Row a whereSource
A Row is something that can be expressed as a line. The output of repr' should be formatted such that it can be read and processed from the command line.
For example:
>>>
IO.putStrLn $ show [1,2,3,4]
[1,2,3,4]
>>>
Data.ByteString.Lazy.Char8.putStrLn $ repr' [1,2,3,4]
1 2 3 4
repr' :: a -> ByteStringSource