Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. showtlParen :: Bool -> Text -> Text

    text-show TextShow

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

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

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

  4. showtlSpace :: Text

    text-show TextShow

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

  5. showtlToShowb :: (a -> Text) -> a -> Builder

    text-show TextShow

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

  6. showbIArrayPrec :: (IArray a e, Ix i, TextShow i, TextShow e) => Int -> a i e -> Builder

    text-show TextShow.Data.Array

    Convert an IArray instance to a Builder with the given precedence. Since: 2

  7. showbChar :: Char -> Builder

    text-show TextShow.Data.Char

    Convert a Char to a Builder (surrounded by single quotes). Since: 2

  8. showbGeneralCategory :: GeneralCategory -> Builder

    text-show TextShow.Data.Char

    Convert a GeneralCategory to a Builder. Since: 2

  9. showbLitChar :: Char -> Builder

    text-show TextShow.Data.Char

    Convert a Char to a Builder (without single quotes). Since: 2

  10. showbLitString :: String -> Builder

    text-show TextShow.Data.Char

    Convert a String to a Builder (without double quotes). Since: 2

Page 64 of many | Previous | Next