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.

  1. showListX :: ShowX a => [a] -> ShowS

    clash-prelude Clash.XException

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

  2. showX :: ShowX a => a -> String

    clash-prelude Clash.XException

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

  3. showsPrecX :: ShowX a => Int -> a -> ShowS

    clash-prelude Clash.XException

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

  4. showsPrecXWith :: (Int -> a -> ShowS) -> Int -> a -> ShowS

    clash-prelude Clash.XException

    Use when you want to create a ShowX instance where:

    • There is no Generic instance for your data type
    • The Generic derived ShowX method would traverse into the (hidden) implementation details of your data type, and you just want to show the entire value as undefined.
    Can be used like:
    data T = ...
    
    instance Show T where ...
    
    instance ShowX T where
    showsPrecX = showsPrecXWith showsPrec
    

  5. showsX :: ShowX a => a -> ShowS

    clash-prelude Clash.XException

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

  6. showListX__ :: (a -> ShowS) -> [a] -> ShowS

    clash-prelude Clash.XException.Internal

    No documentation available.

  7. showXWith :: (a -> ShowS) -> a -> ShowS

    clash-prelude Clash.XException.Internal

    No documentation available.

  8. showsPrecXWith :: (Int -> a -> ShowS) -> Int -> a -> ShowS

    clash-prelude Clash.XException.Internal

    Use when you want to create a ShowX instance where:

    • There is no Generic instance for your data type
    • The Generic derived ShowX method would traverse into the (hidden) implementation details of your data type, and you just want to show the entire value as undefined.
    Can be used like:
    data T = ...
    
    instance Show T where ...
    
    instance ShowX T where
    showsPrecX = showsPrecXWith showsPrec
    

  9. showsX :: ShowX a => a -> ShowS

    clash-prelude Clash.XException.Internal

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

  10. showSeverity :: Severity -> Text

    co-log Colog.Message

    Formats severity in different colours with alignment.

Page 136 of many | Previous | Next