Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
A haskell library to serve charts via ghci.
-
prettyprinter-combinators Prettyprinter.Combinators Maximum number of characters that fit in one line. The layout algorithms will try not to exceed the set limit by inserting line breaks when applicable (e.g. via softline').
-
prettyprinter-combinators Prettyprinter.Combinators Overloaded conversion to Doc. Laws:
- output should be pretty. :-)
-
prettyprinter-combinators Prettyprinter.Generics Helper to use Generic-based prettyprinting with DerivingVia.
>>> :{ data TestWithDeriving a b = TestWithDeriving { testSet :: Maybe (Set a) , testB :: b , testIntMap :: IntMap String , testComplexMap :: Map (Maybe (Set Int)) (IntMap (Set String)) } deriving (Generic) deriving Pretty via PPGeneric (TestWithDeriving a b) :}With -XDerivingVia >>> :{ data TestWithDeriving a b = TestWithDeriving { testSet :: Maybe (Set a) , testB :: b , testIntMap :: IntMap String , testComplexMap :: Map (Maybe (Set Int)) (IntMap (Set String)) } deriving (Generic) deriving via PPGeneric (TestWithDeriving a b) instance (Pretty a, Pretty b) => Pretty (TestWithDeriving a b) :} -
prettyprinter-combinators Prettyprinter.Generics No documentation available.
-
prettyprinter-combinators Prettyprinter.Generics A class to override Pretty when calling ppGeneric without introducing orphans for standard types.
-
prettyprinter-combinators Prettyprinter.Generics Overloaded conversion to Doc. Laws:
- output should be pretty. :-)
-
prettyprinter-combinators Prettyprinter.Show Helper to use Show-based prettyprinting with DerivingVia.
>>> :{ data TestWithDeriving a b = TestWithDeriving { testSet :: Maybe (Set a) , testB :: b , testIntMap :: IntMap String , testComplexMap :: Map (Maybe (Set Int)) (IntMap (Set String)) } deriving (Show) deriving Pretty via PPShow (TestWithDeriving a b) :} -
prettyprinter-combinators Prettyprinter.Show No documentation available.
-
prettyprinter-combinators Prettyprinter.Show Overloaded conversion to Doc. Laws:
- output should be pretty. :-)