Hoogle Search

Within LTS Haskell 24.28 (ghc-9.10.3)

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

  1. fromList :: (Hashable k, Ord k, Ord p) => [(k, p, v)] -> HashPSQ k p v

    psqueues Data.HashPSQ

    O(n*min(n,W)) Build a queue from a list of (key, priority, value) tuples. If the list contains more than one priority and value for the same key, the last priority and value for the key is retained.

  2. toList :: (Hashable k, Ord k, Ord p) => HashPSQ k p v -> [(k, p, v)]

    psqueues Data.HashPSQ

    O(n) Convert a queue to a list of (key, priority, value) tuples. The order of the list is not specified.

  3. fromList :: Ord p => [(Int, p, v)] -> IntPSQ p v

    psqueues Data.IntPSQ

    O(n*min(n,W)) Build a queue from a list of (key, priority, value) tuples. If the list contains more than one priority and value for the same key, the last priority and value for the key is retained.

  4. toList :: IntPSQ p v -> [(Int, p, v)]

    psqueues Data.IntPSQ

    O(n) Convert a queue to a list of (key, priority, value) tuples. The order of the list is not specified.

  5. fromList :: (Ord k, Ord p) => [(k, p, v)] -> OrdPSQ k p v

    psqueues Data.OrdPSQ

    O(n*log n) Build a queue from a list of (key, priority, value) tuples. If the list contains more than one priority and value for the same key, the last priority and value for the key is retained.

  6. toAscList :: OrdPSQ k p v -> [(k, p, v)]

    psqueues Data.OrdPSQ

    O(n) Convert to a list in ascending order by key.

  7. toList :: OrdPSQ k p v -> [(k, p, v)]

    psqueues Data.OrdPSQ

    O(n) Convert a queue to a list of (key, priority, value) tuples. The order of the list is not specified.

  8. toList :: FastMutableIntMap a -> IO [(Int, a)]

    reflex Data.FastMutableIntMap

    No documentation available.

  9. newtype MimeList

    swagger2 Data.Swagger

    No documentation available.

  10. MimeList :: [MediaType] -> MimeList

    swagger2 Data.Swagger

    No documentation available.

Page 106 of many | Previous | Next