Popularity
4.6
Stable
Activity
0.0
Stable
4
4
2
Monthly Downloads: 18
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.
-
skylighting
A Haskell syntax highlighting library with tokenizers derived from KDE syntax highlighting descriptions -
double-conversion
A fast Haskell library for converting between double precision floating point numbers and text strings. It is implemented as a binding to the V8-derived C++ double-conversion library.
InfluxDB - Purpose built for real-time analytics at any scale.
InfluxDB Platform is powered by columnar analytics, optimized for cost-efficient storage, and built with open data standards.
Promo
www.influxdata.com
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ipprint or a related project?
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]]