Popularity
4.6
Growing
Activity
0.0
Stable
4
4
2

Monthly Downloads: 34
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Text    

ipprint alternatives and similar packages

Based on the "Text" category.
Alternatively, view ipprint alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ipprint or a related project?

Add another 'Text' Package

README

UPDATE: deprecated, superseded by http://hackage.haskell.org/package/pretty-show

ipprint

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]]