Hoogle Search

Within LTS Haskell 24.19 (ghc-9.10.3)

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

  1. showbCommaSpace :: Builder

    text-show TextShow

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

  2. 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

  3. showbParen :: Bool -> Builder -> Builder

    text-show TextShow

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

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

    text-show TextShow

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

  5. 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

  6. 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

  7. 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

  8. 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

  9. 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

  10. showbSpace :: Builder

    text-show TextShow

    Construct a Builder containing a single space character. Since: 2

Page 61 of many | Previous | Next