-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Tiny helper for pretty-printing values in ghci console -- -- Tiny helper for pretty-printing values in ghci console -- -- Usage example: -- --
-- Prelude> let e = replicate 5 [1..14] -- value we want to print -- Prelude> :m + IPPrint -- Prelude IPPrint> pprint e -- [[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], -- [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], -- [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], -- [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], -- [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]] --@package ipprint @version 0.3 module IPPrint pshow :: (Show a) => a -> String pprint :: (Show a) => a -> IO ()