Hoogle Search
Within LTS Haskell 24.50 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
shower Shower.Class A tagless final encoding for a result builder (ShowS, Doc, Html, etc). Note that showerStringLit and showerCharLit take exact uninterpreted strings to avoid losing information (e.g. "\n" vs. "\10").
-
shower Shower.Class Either a comma or an element. For example, the tuple section (,a,,b) is represented like this:
[ ShowerCommaSep, ShowerCommaElement "a", ShowerCommaSep, ShowerCommaSep, ShowerCommaElement "b" ]
ShowerCommaElement :: a -> ShowerComma ashower Shower.Class An element
ShowerCommaSep :: ShowerComma ashower Shower.Class A comma, ','
-
shower Shower.Class A field separator used in records, either '=' for Haskell records or ':' for JSON.
ShowerFieldSepColon :: ShowerFieldSepshower Shower.Class A colon, ':'
ShowerFieldSepEquals :: ShowerFieldSepshower Shower.Class An equality sign, '='
-
shower Shower.Printer A pretty document, with a Shower instance.
-
This module defines an extension of the Show class for displaying multi-line values. It serves the following purposes:
-
swish Data.String.ShowLines ShowLines is a type class for values that may be formatted in multi-line displays.