Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

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

  1. class ShowWithAccuracy t

    aern2-mp AERN2.MP.Accuracy

    No documentation available.

  2. type ShowS = String -> String

    cabal-install-solver Distribution.Solver.Compat.Prelude

    The shows functions return a function that prepends the output String to an existing String. This allows constant-time concatenation of results using function composition.

  3. ShowType :: t -> ErrorMessage

    clash-prelude Clash.Explicit.Prelude

    Pretty print the type. ShowType :: k -> ErrorMessage

  4. ShowType :: t -> ErrorMessage

    clash-prelude Clash.Explicit.Prelude.Safe

    Pretty print the type. ShowType :: k -> ErrorMessage

  5. type ShowS = String -> String

    clash-prelude Clash.HaskellPrelude

    The shows functions return a function that prepends the output String to an existing String. This allows constant-time concatenation of results using function composition.

  6. ShowType :: t -> ErrorMessage

    clash-prelude Clash.Prelude

    Pretty print the type. ShowType :: k -> ErrorMessage

  7. ShowType :: t -> ErrorMessage

    clash-prelude Clash.Prelude.Safe

    Pretty print the type. ShowType :: k -> ErrorMessage

  8. class ShowX a

    clash-prelude Clash.XException

    Like the Show class, but values that normally throw an XException are converted to undefined, instead of error'ing out with an exception.

    >>> show (errorX "No value here" :: Integer, 4 :: Int)
    "(*** Exception: X: No value here
    CallStack (from HasCallStack):
    ...
    
    >>> showX (errorX "No value here" :: Integer, 4 :: Int)
    "(undefined,4)"
    
    Can be derived using Generics:
    {-# LANGUAGE DeriveGeneric, DeriveAnyClass #-}
    
    import Clash.Prelude
    import GHC.Generics
    
    data T = MkTA Int | MkTB Bool
    deriving (Show,Generic,ShowX)
    

  9. data ShowType

    clash-prelude Clash.XException.Internal

    No documentation available.

  10. type family ShowSymbols (ctors :: [Symbol]) :: ErrorMessage

    generic-lens-core Data.Generics.Internal.Families

    No documentation available.

Page 34 of many | Previous | Next