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.
-
speculate Test.Speculate.Reason Pretty-prints a theory into a string. (cf. printThy)
-
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
showRatio :: (Integral a, Show a) => Ratio a -> Stringspeculate Test.Speculate.Utils No documentation available.
showCursor :: MonadScreen m => m ()terminal System.Terminal Show the cursor.
showGregorian :: Day -> Stringthyme Data.Thyme.Calendar Shows a Day in ISO 8601 YYYY-MM-DD format. See Data.Thyme.Format for other possibilities.
-
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"
showsTime :: FormatTime t => TimeLocale -> t -> (Char -> ShowS) -> Char -> ShowSthyme Data.Thyme.Format No documentation available.
-
typelevel-tools-yj Data.TypeLevel.Tuple.Uncurry.TH No documentation available.
showCodePoint :: Char -> ShowSunicode-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"
showHtml :: HTML html => html -> Stringxhtml 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.