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. showing :: forall (k :: Type -> Type -> Type) a . (Category k, Show a) => Machine (k a) String

    machines Data.Machine.Process

    Convert Showable values to Strings

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

  3. showTree :: IntMultiSet -> String

    multiset Data.IntMultiSet

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

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

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

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

  7. showStatusL :: Lens IMPresence (Maybe ShowStatus)

    pontarius-xmpp Network.Xmpp

    No documentation available.

  8. showStatus :: IMPresence -> Maybe ShowStatus

    pontarius-xmpp Network.Xmpp.IM

    No documentation available.

  9. showStatus :: IMPresence -> Maybe ShowStatus

    pontarius-xmpp Network.Xmpp.Internal

    No documentation available.

  10. showStatusL :: Lens IMPresence (Maybe ShowStatus)

    pontarius-xmpp Network.Xmpp.Lens

    No documentation available.

Page 121 of many | Previous | Next