Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

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

  1. mkShowXTupleInstance :: Int -> Dec

    clash-prelude Clash.XException.TH

    Creates an instance of the form: instance (ShowX a0, ShowX a1) => ShowX (a0, a1) With n number of variables.

  2. mkShowXTupleInstances :: [Int] -> Q [Dec]

    clash-prelude Clash.XException.TH

    Creates instances of ShowX for all tuple sizes listed. See mkShowXTupleInstance for more information.

  3. ppShow :: Pretty (PP a) => a -> String

    debian Debian.Pretty

    No documentation available.

  4. prettyShow :: Pretty a => a -> String

    debian Debian.Pretty

    No documentation available.

  5. decShow :: Show a => Dec a -> String

    dec Data.Type.Dec

    Show Dec.

    >>> decShow $ Yes ()
    "Yes ()"
    
    >>> decShow $ No id
    "No <toVoid>"
    

  6. newtype ReadShowVar a

    envy System.Envy

    A utility type to use any instance of Read and Show as an instance of Var.

  7. ReadShowVar :: a -> ReadShowVar a

    envy System.Envy

    No documentation available.

  8. unReadShowVar :: ReadShowVar a -> a

    envy System.Envy

    No documentation available.

  9. prettyShow :: Pretty a => a -> String

    flat Flat.Instances.Test

    Pretty print a value with the prettyNormal level.

  10. formatOrShow :: FormatStyle -> Maybe Int -> Double -> Text

    formatn Data.FormatN

    Format with the shorter of show and a style.

    >>> format (ExponentStyle Nothing) Nothing 0
    "0e0"
    
    >>> formatOrShow (ExponentStyle Nothing) Nothing 0
    "0"
    

Page 301 of many | Previous | Next