Hoogle Search
Within LTS Haskell 24.40 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
class Printer p =>
MultilinePrinter ptext-printer Text.Printer Printers that can produce multiple lines of text.
-
text-printer Text.Printer No documentation available.
PrettyPrinter :: Doc -> PrettyPrintertext-printer Text.Printer No documentation available.
crlfPrinter :: Printer p => LinePrinter p -> ptext-printer Text.Printer Separate lines with crlf.
lfPrinter :: Printer p => LinePrinter p -> ptext-printer Text.Printer Separate lines with newLine.
linePrinter :: LinePrinter p -> (p -> p -> p) -> ptext-printer Text.Printer No documentation available.
prettyPrinter :: PrettyPrinter -> Doctext-printer Text.Printer No documentation available.
type family
PrettyPrintList (vs :: [k]) :: ErrorMessagetype-errors Type.Errors Pretty print a list.
>>> :show_error PrettyPrintList '[Bool] ... ... 'Bool' ...
>>> :show_error PrettyPrintList '[1, 2] ... ... '1', and '2' ...
>>> :show_error PrettyPrintList '["hello", "world", "cool"] ... ... "hello", "world", and "cool" ...
-
unicode-data Unicode.Char Selects printable Unicode characters (letters, numbers, marks, punctuation, symbols and spaces). This function returns False if its argument has one of the following GeneralCategorys, or True otherwise:
isPrint c == Data.Char.isPrint c
-
unicode-data Unicode.Char.General Selects printable Unicode characters (letters, numbers, marks, punctuation, symbols and spaces). This function returns False if its argument has one of the following GeneralCategorys, or True otherwise:
isPrint c == Data.Char.isPrint c