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 :: (Hashable a, Ord a) => [a] -> Set ahashmap Data.HashSet Create a set from a list of elements.
fromList :: [(Param, ParamValue)] -> QueryDatahyperbole Web.Hyperbole.Data.QueryData No documentation available.
fromList :: [Cookie] -> Cookieshyperbole Web.Hyperbole.Data.Session No documentation available.
-
interpolation Numeric.Interpolation.NodeList list must be sorted with respect to first element
-
learn-physics Physics.Learn.QuantumMat Construct a vector from a list of complex numbers.
fromList :: forall (m :: Type -> Type) a . Monad m => [a] -> Stream m aleveldb-haskell Data.Stream.Monadic No documentation available.
fromList :: (Ord k, Eq v) => v -> [(k, v)] -> MapWithDefault k vmappings Data.Mapping.MapWithDefault No documentation available.
fromList :: forall (m :: Nat) (n :: Nat) a . (KnownNat m, KnownNat n) => [a] -> Maybe (Matrix m n a)matrix-static Data.Matrix.Static Create a matrix from a list of elements. The list must have exactly length n*m or this returns Nothing. An example:
fromList [1..9] :: Maybe (Matrix 3 3 Int) Just ( 1 2 3 ) ( 4 5 6 ) ( 7 8 9 )
fromList :: (Real a, Eq a) => [a] -> MedianStream amedian-stream Data.MedianStream Creates a MedianStream from a list of input elements. Complexity: O(nlgn)
fromList :: MultiMap m k v => [(k, Set v)] -> m k vmonoidmap-examples Data.MonoidMap.Examples.MultiMap Constructs a multimap from a list of key to value set mappings. Removing empty sets from the input list does not affect the result:
fromList ≡ fromList . filter ((/= Set.empty) . snd)