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. showtPrecToShowbPrec :: (Int -> a -> Text) -> Int -> a -> Builder

    text-show TextShow

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

  2. showtSpace :: Text

    text-show TextShow

    Construct a strict Text containing a single space character. Since: 3.4

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

    text-show TextShow

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

  4. showtl :: TextShow a => a -> Text

    text-show TextShow

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

    showtl = showtlPrec 0
    showtl = toLazyText . showb
    
    The first equation is the default definition of showtl. Since: 3

  5. showtlCommaSpace :: Text

    text-show TextShow

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

  6. showtlList :: TextShow a => [a] -> Text

    text-show TextShow

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

    showtlList = toLazyText . showbList
    
    Since: 3

  7. showtlParen :: Bool -> Text -> Text

    text-show TextShow

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

  8. showtlPrec :: TextShow a => Int -> a -> Text

    text-show TextShow

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

    showtlPrec p = toLazyText . showbPrec p
    
    Since: 3

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

    text-show TextShow

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

  10. showtlSpace :: Text

    text-show TextShow

    Construct a lazy Text containing a single space character. Since: 3.4

Page 96 of many | Previous | Next