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.
fromList :: (C sh, Storable a) => sh -> [a] -> Vector sh acomfort-blas Numeric.BLAS.Vector No documentation available.
fromList :: (Edge e, Ord n) => [LabeledNode n nl] -> [LabeledEdge e n el] -> Graph e n el nlcomfort-graph Data.Graph.Comfort No documentation available.
fromList :: Ord k => [v] -> (v -> k) -> CompactMap k vcompactmap Data.CompactMap No documentation available.
-
compactmap Data.CompactMap.Generic No documentation available.
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.
fromList :: Ord k => [(Interval k, a)] -> IntervalMap k adata-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.
fromList :: Ord k => [(Interval k, a)] -> IntervalMap k adata-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.
fromList :: Ord r => [Interval r] -> IntervalSet rdata-interval Data.IntervalSet Build a interval set from a list of intervals.
fromList :: (Columnable a, ColumnifyRep (KindOf a) a) => [a] -> Columndataframe 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]
fromList :: (Foldable t, Ord p) => t (Int, p, a) -> DEPQ p adepq Data.DEPQ Populate a DEPQ from a Foldable container (e.g. a list)