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.
toEdgesList :: (Hashable v, Eq v) => UGraph v e -> [Edge v e]graphite Data.Graph.UGraph Convert a UGraph to a list of Edges discarding isolated vertices Note that because toEdgesList discards isolated vertices: > fromEdgesList . toEdgesList /= id
fromAscList :: HeapItem pol item => [item] -> Heap pol itemheap Data.Heap O(n). Create a Heap from a list providing its items in ascending order of priority (i. e. in the same order they will be removed from the Heap). This function is faster than fromList but not as fast as fromDescList. The precondition is not checked.
fromDescList :: HeapItem pol item => [item] -> Heap pol itemheap Data.Heap O(n). Create a Heap from a list providing its items in descending order of priority (i. e. they will be removed inversely from the Heap). Prefer this function over fromList and fromAscList, it's faster. The precondition is not checked.
fromList :: HeapItem pol item => [item] -> Heap pol itemheap Data.Heap O(n log n). Build a Heap from the given items. Assuming you have a sorted list, you probably want to use fromDescList or fromAscList, they are faster than this function.
toAscList :: HeapItem pol item => Heap pol item -> [item]heap Data.Heap O(n log n). List the items of the Heap in ascending order of priority.
toDescList :: HeapItem pol item => Heap pol item -> [item]heap Data.Heap O(n log n). List the items of the Heap in descending order of priority. Note that this function is not especially efficient (it is implemented in terms of reverse and toAscList), it is provided as a counterpart of the efficient fromDescList function.
toList :: HeapItem pol item => Heap pol item -> [item]heap Data.Heap O(n log n). List all items of the Heap in no specific order.
sqlSetCmdList :: MonadState SqlInsert m => SQL -> [SQL] -> m ()hpqtypes-extras Database.PostgreSQL.PQTypes.SQL.Builder No documentation available.
sqlSetList :: (MonadState SqlInsert m, Show a, ToSQL a) => SQL -> [a] -> m ()hpqtypes-extras Database.PostgreSQL.PQTypes.SQL.Builder No documentation available.
sqlSetListWithDefaults :: (MonadState SqlInsert m, Show a, ToSQL a) => SQL -> [Maybe a] -> m ()hpqtypes-extras Database.PostgreSQL.PQTypes.SQL.Builder No documentation available.