Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. fromList :: (Foldable t, Ord p) => t (Int, p, a) -> DEPQ p a

    depq Data.DEPQ

    Populate a DEPQ from a Foldable container (e.g. a list)

  2. fromList :: (Eq a, Hashable a) => [(a, [a])] -> DiGraph a

    digraph Data.DiGraph

    Construct a graph from adjacency lists.

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

    discrimination Data.Discrimination.Internal.WordMap

    No documentation available.

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

    do-list Data.DoList

    Convert from a list.

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

    dsp Matrix.Vector

    No documentation available.

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

    exp-pairs Math.ExpPairs.Matrix3

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

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

    fmlist Data.FMList

    No documentation available.

  8. fromList :: [Text] -> FuzzySet

    fuzzyset Data.FuzzySet.Simple

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

  9. 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")]}
    

  10. 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"]
    

Page 30 of many | Previous | Next