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 :: (Eq a, Hashable a) => [(a, [a])] -> DiGraph a

    digraph Data.DiGraph

    Construct a graph from adjacency lists.

  2. fromList :: [(Word64, v)] -> WordMap v

    discrimination Data.Discrimination.Internal.WordMap

    No documentation available.

  3. fromList :: [a] -> DoListM a r

    do-list Data.DoList

    Convert from a list.

  4. fromList :: [a] -> Array Int a

    dsp Matrix.Vector

    No documentation available.

  5. fromList :: [t] -> Matrix3 t

    exp-pairs Math.ExpPairs.Matrix3

    Convert a list of 9 elements into Matrix3. Reverse conversion can be done by toList.

  6. fromList :: [a] -> FMList a

    fmlist Data.FMList

    No documentation available.

  7. fromList :: [Text] -> FuzzySet

    fuzzyset Data.FuzzySet.Simple

    Create a new set from a list of entries, using the default settings.

  8. fromList :: [(Text, Text)] -> Context

    glabrous Text.Glabrous

    Build a Context from a list of Tags and replacement Texts.

    λ>fromList [("tag","replacement"), ("etc.","...")]
    Context {variables = fromList [("etc.","..."),("tag","replacement")]}
    

  9. fromList :: [Identifier] -> Pattern

    hakyll 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"]
    

  10. fromList :: (Hashable k, Ord k) => [(k, a)] -> Map k a

    hashmap Data.HashMap

    Create a map from a list of key/value pairs.

Page 30 of many | Previous | Next