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.
showListX :: ShowX a => [a] -> ShowSclash-prelude Clash.XException Like showList, but values that normally throw an XException are converted to undefined, instead of error'ing out with an exception.
showX :: ShowX a => a -> Stringclash-prelude Clash.XException Like show, but values that normally throw an XException are converted to undefined, instead of error'ing out with an exception.
showsPrecX :: ShowX a => Int -> a -> ShowSclash-prelude Clash.XException Like showsPrec, but values that normally throw an XException are converted to undefined, instead of error'ing out with an exception.
showsPrecXWith :: (Int -> a -> ShowS) -> Int -> a -> ShowSclash-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.
data T = ... instance Show T where ... instance ShowX T where showsPrecX = showsPrecXWith showsPrec
showsX :: ShowX a => a -> ShowSclash-prelude Clash.XException Like shows, but values that normally throw an XException are converted to undefined, instead of error'ing out with an exception.
showListX__ :: (a -> ShowS) -> [a] -> ShowSclash-prelude Clash.XException.Internal No documentation available.
showXWith :: (a -> ShowS) -> a -> ShowSclash-prelude Clash.XException.Internal No documentation available.
showsPrecXWith :: (Int -> a -> ShowS) -> Int -> a -> ShowSclash-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.
data T = ... instance Show T where ... instance ShowX T where showsPrecX = showsPrecXWith showsPrec
showsX :: ShowX a => a -> ShowSclash-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.
showSeverity :: Severity -> Textco-log Colog.Message Formats severity in different colours with alignment.