Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. toList :: Ord k => MaxPQueue k a -> [(k, a)]

    pqueue Data.PQueue.Prio.Max

    Equivalent to toDescList. If the traversal order is irrelevant, consider using toListU.

  2. toListU :: MaxPQueue k a -> [(k, a)]

    pqueue Data.PQueue.Prio.Max

    Returns all (key, value) pairs in the queue in no particular order.

  3. fromAscList :: [(k, a)] -> MinPQueue k a

    pqueue Data.PQueue.Prio.Min

    Build a priority queue from an ascending list of (key, value) pairs. The precondition is not checked.

  4. fromDescList :: [(k, a)] -> MinPQueue k a

    pqueue Data.PQueue.Prio.Min

    Build a priority queue from a descending list of (key, value) pairs. The precondition is not checked.

  5. fromList :: Ord k => [(k, a)] -> MinPQueue k a

    pqueue Data.PQueue.Prio.Min

    Constructs a priority queue from an unordered list.

  6. toAscList :: Ord k => MinPQueue k a -> [(k, a)]

    pqueue Data.PQueue.Prio.Min

    Return all (key, value) pairs in ascending order by key.

  7. toDescList :: Ord k => MinPQueue k a -> [(k, a)]

    pqueue Data.PQueue.Prio.Min

    Return all (key, value) pairs in descending order by key.

  8. toList :: Ord k => MinPQueue k a -> [(k, a)]

    pqueue Data.PQueue.Prio.Min

    Equivalent to toAscList. If the traversal order is irrelevant, consider using toListU.

  9. toListU :: MinPQueue k a -> [(k, a)]

    pqueue Data.PQueue.Prio.Min

    Returns all (key, value) pairs in the queue in no particular order.

  10. type ChildList = MVar [Weak Statement]

    HDBC Database.HDBC.DriverUtils

    No documentation available.

Page 123 of many | Previous | Next