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. showSDocQualified :: SDoc -> String

    liquidhaskell-boot Liquid.GHC.API.Extra

    No documentation available.

  2. showLogLevel :: LogLevel -> Text

    log-base Log.Data

    No documentation available.

  3. showLogMessage :: Maybe UTCTime -> LogMessage -> Text

    log-base Log.Data

    Render a LogMessage to Text.

  4. showing :: forall (k :: Type -> Type -> Type) a . (Category k, Show a) => Machine (k a) String

    machines Data.Machine.Process

    Convert Showable values to Strings

  5. showVars :: (Show n, Show v, Ord n, Ord v, Floating n) => Either (DepError v n) (Dependencies v n) -> IO ()

    mfsolve Math.MFSolve

    Show all variables and equations. Useful in combination with execSolver.

  6. showTree :: IntMultiSet -> String

    multiset Data.IntMultiSet

    O(n). Show the tree that implements the set. The tree is shown in a compressed, hanging format.

  7. showTreeWith :: Bool -> Bool -> IntMultiSet -> String

    multiset Data.IntMultiSet

    O(n). The expression (showTreeWith hang wide map) shows the tree that implements the set. If hang is True, a hanging tree is shown otherwise a rotated tree is shown. If wide is True, an extra wide version is shown.

    Set> putStrLn $ showTreeWith True False $ fromDistinctAscList [1,1,2,3,4,5]
    (1*) 4
    +--(1*) 2
    |  +--(2*) 1
    |  +--(1*) 3
    +--(1*) 5
    
    Set> putStrLn $ showTreeWith True True $ fromDistinctAscList [1,1,2,3,4,5]
    (1*) 4
    |
    +--(1*) 2
    |  |
    |  +--(2*) 1
    |  |
    |  +--(1*) 3
    |
    +--(1*) 5
    
    Set> putStrLn $ showTreeWith False True $ fromDistinctAscList [1,1,2,3,4,5]
    +--(1*) 5
    |
    (1*) 4
    |
    |  +--(1*) 3
    |  |
    +--(1*) 2
    |
    +--(2*) 1
    

  8. showTree :: Show a => MultiSet a -> String

    multiset Data.MultiSet

    O(n). Show the tree that implements the set. The tree is shown in a compressed, hanging format.

  9. showTreeWith :: Show a => Bool -> Bool -> MultiSet a -> String

    multiset Data.MultiSet

    O(n). The expression (showTreeWith hang wide map) shows the tree that implements the set. If hang is True, a hanging tree is shown otherwise a rotated tree is shown. If wide is True, an extra wide version is shown.

    Set> putStrLn $ showTreeWith True False $ fromDistinctAscList [1,1,2,3,4,5]
    (1*) 4
    +--(1*) 2
    |  +--(2*) 1
    |  +--(1*) 3
    +--(1*) 5
    
    Set> putStrLn $ showTreeWith True True $ fromDistinctAscList [1,1,2,3,4,5]
    (1*) 4
    |
    +--(1*) 2
    |  |
    |  +--(2*) 1
    |  |
    |  +--(1*) 3
    |
    +--(1*) 5
    
    Set> putStrLn $ showTreeWith False True $ fromDistinctAscList [1,1,2,3,4,5]
    +--(1*) 5
    |
    (1*) 4
    |
    |  +--(1*) 3
    |  |
    +--(1*) 2
    |
    +--(2*) 1
    

  10. showStatusL :: Lens IMPresence (Maybe ShowStatus)

    pontarius-xmpp Network.Xmpp

    No documentation available.

Page 119 of many | Previous | Next