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. showbToShows :: (a -> Builder) -> a -> ShowS

    text-show TextShow

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

  2. showbToShowt :: (a -> Builder) -> a -> Text

    text-show TextShow

    Convert a Builder-based show function to a strict Text-based one. Since: 3

  3. showbToShowtl :: (a -> Builder) -> a -> Text

    text-show TextShow

    Convert a Builder-based show function to a lazy Text-based one. Since: 3

  4. showbUnaryWith :: (Int -> a -> Builder) -> Builder -> Int -> a -> Builder

    text-show TextShow

    showbUnaryWith sp n p x produces the Builder representation of a unary data constructor with name n and argument x, in precedence context p, using the function sp to show occurrences of the type argument. Since: 2

  5. showsPrecToShowbPrec :: (Int -> a -> ShowS) -> Int -> a -> Builder

    text-show TextShow

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

  6. showsToShowb :: (a -> ShowS) -> a -> Builder

    text-show TextShow

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

  7. showt :: TextShow a => a -> Text

    text-show TextShow

    Converts a value to a strict Text. This can be overridden for efficiency, but it should satisfy:

    showt = showtPrec 0
    showt = toStrict . showtl
    
    The first equation is the default definition of showt. Since: 3

  8. showtCommaSpace :: Text

    text-show TextShow

    Construct a strict Text containing a comma followed by a space. Since: 3.6

  9. showtList :: TextShow a => [a] -> Text

    text-show TextShow

    Converts a list of values to a strict Text. This can be overridden for efficiency, but it should satisfy:

    showtList = toStrict . showtlList
    
    Since: 3

  10. showtParen :: Bool -> Text -> Text

    text-show TextShow

    Surrounds strict Text output with parentheses if the Bool parameter is True. Since: 3.4

Page 62 of many | Previous | Next