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

  2. showTree :: IntMultiSet -> String

    multiset Data.IntMultiSet

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

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

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

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

  6. showStatusL :: Lens IMPresence (Maybe ShowStatus)

    pontarius-xmpp Network.Xmpp

    No documentation available.

  7. showStatus :: IMPresence -> Maybe ShowStatus

    pontarius-xmpp Network.Xmpp.IM

    No documentation available.

  8. showStatus :: IMPresence -> Maybe ShowStatus

    pontarius-xmpp Network.Xmpp.Internal

    No documentation available.

  9. showStatusL :: Lens IMPresence (Maybe ShowStatus)

    pontarius-xmpp Network.Xmpp.Lens

    No documentation available.

  10. showsType :: Typeable t => proxy t -> ShowS

    pvar Data.Primitive.PVar.Unsafe

    Show the type name

Page 154 of many | Previous | Next