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. glist :: GIsList f g as bs => Iso (f x) (g x) (HList as) (HList bs)

    generic-lens-core Data.Generics.Product.Internal.HList

    No documentation available.

  2. tupleToList :: ListTuple tuple tuple' as bs => tuple' -> HList bs

    generic-lens-core Data.Generics.Product.Internal.HList

    No documentation available.

  3. fromArcsList :: (Hashable v, Eq v) => [Arc v e] -> DGraph v e

    graphite Data.Graph.DGraph

    Construct a DGraph from a list of Arcs

  4. toArcsList :: (Hashable v, Eq v) => DGraph v e -> [Arc v e]

    graphite Data.Graph.DGraph

    Convert a DGraph to a list of Arcs discarding isolated vertices Note that because toArcsList discards isolated vertices:

    fromArcsList . toArcsList /= id
    

  5. fromList :: (Graph g, Hashable v, Eq v) => [(v, [(v, e)])] -> g v e

    graphite Data.Graph.Types

    Construct a graph from an adjacency list with vertices in type /v and edge attributes in e

  6. toList :: (Graph g, Hashable v, Eq v) => g v e -> [(v, [(v, e)])]

    graphite Data.Graph.Types

    Convert a graph to an adjacency list with vertices in type v and edge attributes in e

  7. fromEdgesList :: (Hashable v, Eq v) => [Edge v e] -> UGraph v e

    graphite Data.Graph.UGraph

    Construct a UGraph from a list of Edges

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

  9. fromAscList :: HeapItem pol item => [item] -> Heap pol item

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

  10. fromDescList :: HeapItem pol item => [item] -> Heap pol item

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

Page 163 of many | Previous | Next