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. showOpExpr :: String -> Expr -> String

    express Data.Express.Core

    O(n). Like showPrecExpr but the precedence is taken from the given operator name.

    > showOpExpr "*" (two -*- three)
    "(2 * 3)"
    
    > showOpExpr "+" (two -*- three)
    "2 * 3"
    
    To imply that the surrounding environment is a function application, use " " as the given operator.
    > showOpExpr " " (two -*- three)
    "(2 * 3)"
    

  2. showPrecExpr :: Int -> Expr -> String

    express Data.Express.Core

    O(n). Like showExpr but allows specifying the surrounding precedence.

    > showPrecExpr 6 (one -+- two)
    "1 + 2"
    
    > showPrecExpr 7 (one -+- two)
    "(1 + 2)"
    

  3. showJustName :: Name -> String

    express Data.Express.Utils.TH

    Encodes a Name as a String. This is useful when generating error messages.

    > showJustName ''Int
    "Int"
    
    > showJustName ''String
    "String"
    
    > showJustName ''Maybe
    "Maybe"
    

  4. showLinkAttr :: LinkRelation -> String -> String

    feed Text.Atom.Feed.Link

    No documentation available.

  5. showLinkRelation :: LinkRelation -> String

    feed Text.Atom.Feed.Link

    No documentation available.

  6. showSDocUnsafe :: SDoc -> String

    ghc-typelits-presburger GHC.TypeLits.Presburger.Compat

    No documentation available.

  7. showTable :: Show a => BlockTable a -> String

    html Text.Html.BlockTable

    No documentation available.

  8. showsTable :: Show a => BlockTable a -> ShowS

    html Text.Html.BlockTable

    No documentation available.

  9. showsArrayType :: (Typeable r, Typeable ix, Typeable e) => ShowS

    massiv-test Test.Massiv.Utils

    Use Typeable to show the array type

  10. showsType :: Typeable t => ShowS

    massiv-test Test.Massiv.Utils

    Use Typeable to show the type.

Page 88 of many | Previous | Next