Hoogle Search

Within LTS Haskell 24.42 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. showbBinaryWith :: (Int -> a -> Builder) -> (Int -> b -> Builder) -> Builder -> Int -> a -> b -> Builder

    text-show TextShow

    showbBinaryWith sp n p x y produces the Builder representation of a binary data constructor with name n and arguments x and y, in precedence context p, using the functions sp1 and sp2 to show occurrences of the type arguments. Since: 2

  2. showbCommaSpace :: Builder

    text-show TextShow

    Construct a Builder containing a comma followed by a space. Since: 3.6

  3. showbList :: TextShow a => [a] -> Builder

    text-show TextShow

    Converts a list of values to a Builder. By default, this is defined as 'showbList = showbListWith showb, but it can be overridden to allow for specialized displaying of lists (e.g., lists of Chars). Since: 2

  4. showbParen :: Bool -> Builder -> Builder

    text-show TextShow

    Surrounds Builder output with parentheses if the Bool parameter is True. Since: 2

  5. showbPrec :: TextShow a => Int -> a -> Builder

    text-show TextShow

    Convert a value to a Builder with the given predence. Since: 2

  6. showbPrec1 :: (TextShow1 f, TextShow a) => Int -> f a -> Builder

    text-show TextShow

    Lift the standard showbPrec and showbList functions through the type constructor. Since: 2

  7. showbPrec2 :: (TextShow2 f, TextShow a, TextShow b) => Int -> f a b -> Builder

    text-show TextShow

    Lift two showbPrec functions through the type constructor. Since: 2

  8. showbPrecToShowsPrec :: (Int -> a -> Builder) -> Int -> a -> ShowS

    text-show TextShow

    Convert a precedence-aware Builder-based show function to a ShowS-based one. Since: 3

  9. showbPrecToShowtPrec :: (Int -> a -> Builder) -> Int -> a -> Text

    text-show TextShow

    Convert a precedence-aware Builder-based show function to a strict Text-based one. Since: 3.4

  10. showbPrecToShowtlPrec :: (Int -> a -> Builder) -> Int -> a -> Text

    text-show TextShow

    Convert a precedence-aware Builder-based show function to a lazy Text-based one. Since: 3.4

Page 94 of many | Previous | Next