Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

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

  1. fromList :: Enum key => [(key, a)] -> EnumMap key a

    regex-tdfa Data.IntMap.EnumMap2

    No documentation available.

  2. fromList :: Enum e => [e] -> EnumSet e

    regex-tdfa Data.IntSet.EnumSet2

    No documentation available.

  3. fromList :: Routable k => [(AddrRange k, a)] -> IPRTable k a

    iproute Data.IP.RouteTable

    The fromList function creates a new IP routing table from a list of a pair of IPrange and value.

  4. fromList :: Routable k => [(AddrRange k, a)] -> IPRTable k a

    iproute Data.IP.RouteTable.Internal

    The fromList function creates a new IP routing table from a list of a pair of IPrange and value.

  5. fromList :: Ord k => T [] (k, a) -> T k a

    non-empty Data.NonEmpty.Map

    Warning: Dangerous because it silently drops colliding key/value pairs. Better use fromListWith.

  6. fromList :: Ord a => T [] a -> T a

    non-empty Data.NonEmpty.Set

    No documentation available.

  7. fromList :: MonadRandom m => [(a, Rational)] -> m a

    MonadRandom Control.Monad.Random.Class

    Sample a random value from a weighted list. The list must be non-empty and the total weight must be non-zero.

  8. fromList :: Storable a => [a] -> Vector a

    hmatrix Numeric.LinearAlgebra.Data

    No documentation available.

  9. fromList :: Sized t s d => [t] -> s

    hmatrix Numeric.LinearAlgebra.Static

    No documentation available.

  10. fromList :: [c] -> IO (InputStream c)

    io-streams System.IO.Streams.List

    Transforms a list into an InputStream that produces no side effects.

    ghci> is <- Streams.fromList [1, 2]
    ghci> replicateM 3 (Streams.read is)
    [Just 1, Just 2, Nothing]
    

Page 5 of many | Previous | Next