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. showBranch :: Branch -> String

    fedora-releases Distribution.Fedora.Branch

    render Branch to String

  2. showDot :: Dot a -> String

    fgl-visualize Data.Graph.Inductive.Dot

    No documentation available.

  3. showDigits :: BinDecode a => a -> Int

    floatshow Text.FShow.Raw

    The number of significant digits needed to uniquely determine the value (or however many digits are desired). Usually, showDigits will be a constant function, but that is not necessary. However, all values of showDigits must be positive. If the mantissa always has the same highest bit, highBit, set when it is nonzero,

    showDigits _ = 2 + floor ((highBit+1) * logBase 10 2)
    
    is sufficient to make the values and formatted Strings uniquely determine each other and in general this is the smallest number to achieve that (calculate the number once and supply the result as a constant). If the highest set bit of nonzero mantissae varies, things are not so easy. If the width of mantissae is bounded, plugging the largest possible value into the above formula works, but may yield an unduly large number for common cases. Using the formula with highBit determined by the mantissa almost works, but if the representation is rounded at all, with sufficiently many bits in the mantissa, there will be values between the original and the representation. So, with mantissae of width varying over a large range, the only feasible way of obtaining a bijection between values and their decimal representations is printing to full precision in general, optionally capping at the upper limit. The default implementation prints values exactly, which in general is undesirable because it involves huge Integers and long representations.

  4. showRegex :: String -> IO ()

    frisby Text.Parsers.Frisby

    Show a representation of the parsed regex, mainly for debugging.

  5. showFF :: Double -> ShowS

    funcmp FMP.Syntax

    No documentation available.

  6. showGeneric :: (Generic a, GFoldMapSum Showly Raw (Rep a)) => a -> String

    generic-data-functions Generic.Data.Function.Example

    No documentation available.

  7. showGeneric' :: (Generic a, GFoldMapNonSum Showly (Rep a)) => a -> String

    generic-data-functions Generic.Data.Function.Example

    No documentation available.

  8. showGhcException :: SDocContext -> GhcException -> ShowS

    ghc-lib GHC

    Append a description of the given exception to this string.

  9. showModule :: GhcMonad m => ModSummary -> m String

    ghc-lib GHC

    No documentation available.

  10. showRichTokenStream :: [(Located Token, String)] -> String

    ghc-lib GHC

    Take a rich token stream such as produced from getRichTokenStream and return source code almost identical to the original code (except for insignificant whitespace.)

Page 170 of many | Previous | Next