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 :: (Eq a, Hashable a) => [(a, [a])] -> DiGraph adigraph Data.DiGraph Construct a graph from adjacency lists.
fromList :: [(Word64, v)] -> WordMap vdiscrimination Data.Discrimination.Internal.WordMap No documentation available.
fromList :: [a] -> DoListM a rdo-list Data.DoList Convert from a list.
fromList :: [a] -> Array Int adsp Matrix.Vector No documentation available.
-
exp-pairs Math.ExpPairs.Matrix3 Convert a list of 9 elements into Matrix3. Reverse conversion can be done by toList.
-
fmlist Data.FMList No documentation available.
fromList :: [Text] -> FuzzySetfuzzyset Data.FuzzySet.Simple Create a new set from a list of entries, using the default settings.
fromList :: [(Text, Text)] -> Contextglabrous Text.Glabrous Build a Context from a list of Tags and replacement Texts.
λ>fromList [("tag","replacement"), ("etc.","...")] Context {variables = fromList [("etc.","..."),("tag","replacement")]}
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.