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. showThy :: Thy -> String

    speculate Test.Speculate.Reason

    Pretty-prints a theory into a string. (cf. printThy)

  2. showLitChar :: Char -> ShowS

    speculate Test.Speculate.Utils

    Convert a character to a string using only printable characters, using Haskell source-language escape conventions. For example:

    showLitChar '\n' s  =  "\\n" ++ s
    

  3. showRatio :: (Integral a, Show a) => Ratio a -> String

    speculate Test.Speculate.Utils

    No documentation available.

  4. showCursor :: MonadScreen m => m ()

    terminal System.Terminal

    Show the cursor.

  5. showGregorian :: Day -> String

    thyme Data.Thyme.Calendar

    Shows a Day in ISO 8601 YYYY-MM-DD format. See Data.Thyme.Format for other possibilities.

  6. showWeekDate :: Day -> String

    thyme Data.Thyme.Calendar.WeekDate

    Shows a Day using the yyyy-Www-d ISO 8601 Week Date format.

    > showWeekDate (gregorian # YearMonthDay 2006 11 15)
    "2006-W46-3"
    

  7. showsTime :: FormatTime t => TimeLocale -> t -> (Char -> ShowS) -> Char -> ShowS

    thyme Data.Thyme.Format

    No documentation available.

  8. showUc :: Int -> DecQ

    typelevel-tools-yj Data.TypeLevel.Tuple.Uncurry.TH

    No documentation available.

  9. showCodePoint :: Char -> ShowS

    unicode-data Unicode.Char

    Show the code point of a character using the Unicode Standard convention: hexadecimal codepoint padded with zeros if inferior to 4 characters.

    >>> showCodePoint '\xf' ""
    "000F"
    
    >>> showCodePoint '\x1ffff' ""
    "1FFFF"
    

  10. showHtml :: HTML html => html -> String

    xhtml Text.XHtml.Frameset

    Output the HTML without adding newlines or spaces within the markup. This should be the most time and space efficient way to render HTML, though the output is quite unreadable.

Page 103 of many | Previous | Next