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.
showBranch :: Branch -> Stringfedora-releases Distribution.Fedora.Branch render Branch to String
-
fgl-visualize Data.Graph.Inductive.Dot No documentation available.
showDigits :: BinDecode a => a -> Intfloatshow 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.-
frisby Text.Parsers.Frisby Show a representation of the parsed regex, mainly for debugging.
-
funcmp FMP.Syntax No documentation available.
showGeneric :: (Generic a, GFoldMapSum Showly Raw (Rep a)) => a -> Stringgeneric-data-functions Generic.Data.Function.Example No documentation available.
showGeneric' :: (Generic a, GFoldMapNonSum Showly (Rep a)) => a -> Stringgeneric-data-functions Generic.Data.Function.Example No documentation available.
showGhcException :: SDocContext -> GhcException -> ShowSghc-lib GHC Append a description of the given exception to this string.
showModule :: GhcMonad m => ModSummary -> m Stringghc-lib GHC No documentation available.
showRichTokenStream :: [(Located Token, String)] -> Stringghc-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.)