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. showTheory :: Args -> Bool

    speculate Test.Speculate.Args

    (debug) whether to show raw theory

  2. showThy :: Thy -> String

    speculate Test.Speculate.Reason

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

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

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

    speculate Test.Speculate.Utils

    No documentation available.

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

    terminal System.Terminal

    Show the cursor.

  6. showGregorian :: Day -> String

    thyme Data.Thyme.Calendar

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

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

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

    thyme Data.Thyme.Format

    No documentation available.

  9. showUc :: Int -> DecQ

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

    No documentation available.

  10. 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"
    

Page 103 of many | Previous | Next