Hoogle Search

Within LTS Haskell 24.6 (ghc-9.10.2)

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

  1. fromList :: (C sh, Storable a) => sh -> [a] -> Vector sh a

    comfort-blas Numeric.BLAS.Vector

    No documentation available.

  2. fromList :: (Edge e, Ord n) => [LabeledNode n nl] -> [LabeledEdge e n el] -> Graph e n el nl

    comfort-graph Data.Graph.Comfort

    No documentation available.

  3. fromList :: Ord k => [v] -> (v -> k) -> CompactMap k v

    compactmap Data.CompactMap

    No documentation available.

  4. fromList :: forall (vec :: Type -> Type) v k . (Vector vec v, Ord k) => [v] -> (v -> k) -> CompactMap vec k v

    compactmap Data.CompactMap.Generic

    No documentation available.

  5. fromList :: (Eq k, Hashable k) => [(k, v)] -> IO (Map k v)

    ctrie Control.Concurrent.Map

    O(n * log n). Construct a map from a list of key/value pairs.

  6. fromList :: Ord k => [(Interval k, a)] -> IntervalMap k a

    data-interval Data.IntervalMap.Lazy

    Build a map from a list of key/value pairs. If the list contains more than one value for the same key, the last value for the key is retained.

  7. fromList :: Ord k => [(Interval k, a)] -> IntervalMap k a

    data-interval Data.IntervalMap.Strict

    Build a map from a list of key/value pairs. If the list contains more than one value for the same key, the last value for the key is retained.

  8. fromList :: Ord r => [Interval r] -> IntervalSet r

    data-interval Data.IntervalSet

    Build a interval set from a list of intervals.

  9. fromList :: (Columnable a, ColumnifyRep (KindOf a) a) => [a] -> Column

    dataframe DataFrame

    O(n) Convert a list to a column. Automatically picks the best representation of a vector to store the underlying data in. Examples:

    > fromList [(1 :: Int), 2, 3, 4]
    [1,2,3,4]
    

  10. fromList :: (Foldable t, Ord p) => t (Int, p, a) -> DEPQ p a

    depq Data.DEPQ

    Populate a DEPQ from a Foldable container (e.g. a list)

Page 29 of many | Previous | Next