Hoogle Search

Within LTS Haskell 24.32 (ghc-9.10.3)

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

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

    text-show TextShow

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

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

    text-show TextShow

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

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

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

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

    text-show TextShow

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

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

  7. showtCommaSpace :: Text

    text-show TextShow

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

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

  9. showtParen :: Bool -> Text -> Text

    text-show TextShow

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

  10. showtPrec :: TextShow a => Int -> a -> Text

    text-show TextShow

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

    showtPrec p = toStrict . showtlPrec p
    
    Since: 3

Page 95 of many | Previous | Next