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.
fromList :: Enum key => [(key, a)] -> EnumMap key aregex-tdfa Data.IntMap.EnumMap2 No documentation available.
fromList :: Enum e => [e] -> EnumSet eregex-tdfa Data.IntSet.EnumSet2 No documentation available.
fromList :: Routable k => [(AddrRange k, a)] -> IPRTable k aiproute Data.IP.RouteTable The fromList function creates a new IP routing table from a list of a pair of IPrange and value.
fromList :: Routable k => [(AddrRange k, a)] -> IPRTable k aiproute Data.IP.RouteTable.Internal The fromList function creates a new IP routing table from a list of a pair of IPrange and value.
fromList :: Ord k => T [] (k, a) -> T k anon-empty Data.NonEmpty.Map Warning: Dangerous because it silently drops colliding key/value pairs. Better use fromListWith.
fromList :: Ord a => T [] a -> T anon-empty Data.NonEmpty.Set No documentation available.
fromList :: MonadRandom m => [(a, Rational)] -> m aMonadRandom 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.
fromList :: Storable a => [a] -> Vector ahmatrix Numeric.LinearAlgebra.Data No documentation available.
fromList :: Sized t s d => [t] -> shmatrix Numeric.LinearAlgebra.Static No documentation available.
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]