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.
fromList :: (Ord k, Ord p) => [Binding k p] -> PSQ k pPSQueue Data.PSQueue.Internal O(n log n) Build a queue from a list of bindings.
toAscList :: PSQ k p -> [Binding k p]PSQueue Data.PSQueue.Internal O(n) Convert a queue to a list in ascending order of keys.
toAscLists :: PSQ k p -> Sequ (Binding k p)PSQueue Data.PSQueue.Internal No documentation available.
toDescList :: PSQ k p -> [Binding k p]PSQueue Data.PSQueue.Internal O(n) Convert a queue to a list in descending order of keys.
toDescLists :: PSQ k p -> Sequ (Binding k p)PSQueue Data.PSQueue.Internal No documentation available.
toList :: PSQ k p -> [Binding k p]PSQueue Data.PSQueue.Internal O(n) Convert a queue to a list.
-
Stream Data.Stream The fromList converts an infinite list to a stream. Beware: Passing a finite list, will cause an error.
-
Stream Data.Stream The toList converts a stream into an infinite list.
entriesToList :: Entries -> [Entry]acid-state Data.Acid.Archive Convert Entries to a normal list, calling error if there was a failure in unpacking the archive.
entriesToListNoFail :: Entries -> [Entry]acid-state Data.Acid.Archive Convert Entries to a normal list, silently ignoring a failure to unpack the archive and instead returning a truncated list.