Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
fromList :: [Identifier] -> Patternhakyll Hakyll.Core.Identifier.Pattern Create a Pattern from a list of Identifiers it should match. Warning: use this carefully with hasNoVersion and hasVersion. The Identifiers in the list already have versions assigned, and the pattern will then only match the intersection of both versions. A more concrete example,
fromList ["foo.markdown"] .&&. hasVersion "pdf"
will not match anything! The "foo.markdown" Identifier has no version assigned, so the LHS of .&&. will only match this Identifier with no version. The RHS only matches Identifiers with version set to "pdf" -- hence, this pattern matches nothing. The correct way to use this is:fromList $ map (setVersion $ Just "pdf") ["foo.markdown"]
fromList :: (Hashable k, Ord k) => [(k, a)] -> Map k ahashmap Data.HashMap Create a map from a list of key/value pairs.
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 )