Hoogle Search

Within LTS Haskell 24.10 (ghc-9.10.2)

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

  1. showErrorItem :: VisualStream s => Proxy s -> ErrorItem (Token s) -> String

    megaparsec Text.Megaparsec.Error

    Pretty-print an ErrorItem.

  2. showTokens :: VisualStream s => Proxy s -> NonEmpty (Token s) -> String

    megaparsec Text.Megaparsec.Stream

    Pretty-print non-empty stream of tokens. This function is also used to print single tokens (represented as singleton lists).

  3. showsPrecDefault :: (GShow (Rep1 f a), Generic1 f) => Int -> f a -> ShowS

    transformers-compat Data.Functor.Classes.Generic.Internal

    A default showsPrec implementation for Generic1 instances that leverages Show1.

  4. showsPrecOptions :: (GShow (Rep1 f a), Generic1 f) => Options -> Int -> f a -> ShowS

    transformers-compat Data.Functor.Classes.Generic.Internal

    Like showsPrecDefault, but with configurable Options.

  5. showCursor :: IO ()

    ansi-terminal System.Console.ANSI

    No documentation available.

  6. showCursorCode :: String

    ansi-terminal System.Console.ANSI

    No documentation available.

  7. showBin :: Integral a => a -> ShowS

    base-compat Numeric.Compat

    Show non-negative Integral numbers in base 2.

  8. showFFloatAlt :: RealFloat a => Maybe Int -> a -> ShowS

    base-compat Numeric.Compat

    Show a signed RealFloat value using standard decimal notation (e.g. 245000, 0.0015). This behaves as showFFloat, except that a decimal point is always guaranteed, even if not needed.

  9. showGFloatAlt :: RealFloat a => Maybe Int -> a -> ShowS

    base-compat Numeric.Compat

    Show a signed RealFloat value using standard decimal notation for arguments whose absolute value lies between 0.1 and 9,999,999, and scientific notation otherwise. This behaves as showFFloat, except that a decimal point is always guaranteed, even if not needed.

  10. showHFloat :: RealFloat a => a -> ShowS

    base-compat Numeric.Compat

    Show a floating-point value in the hexadecimal format, similar to the %a specifier in C's printf.

    >>> showHFloat (212.21 :: Double) ""
    "0x1.a86b851eb851fp7"
    
    >>> showHFloat (-12.76 :: Float) ""
    "-0x1.9851ecp3"
    
    >>> showHFloat (-0 :: Double) ""
    "-0x0p+0"
    

Page 60 of many | Previous | Next