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. 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.

  2. 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.

  3. 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
    

  4. 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.

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

    clash-prelude Clash.XException.Internal

    No documentation available.

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

    clash-prelude Clash.XException.Internal

    No documentation available.

  7. 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
    

  8. 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.

  9. showCurlOption :: CurlOption -> String

    curl Network.Curl.Opts

    No documentation available.

  10. showName :: HttpPost -> Maybe String

    curl Network.Curl.Post

    No documentation available.

Page 112 of many | Previous | Next