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.
fromListN :: Unbox a => Int -> [a] -> Array astreamly-core Streamly.Data.Array Create an Array from the first N elements of a list. The array is allocated to size N, if the list terminates before N elements then the array may hold less than N elements.
fromListN :: Int -> [a] -> Array astreamly-core Streamly.Data.Array.Generic No documentation available.
fromListN :: (MonadIO m, Unbox a) => Int -> [a] -> m (MutArray a)streamly-core Streamly.Data.MutArray Create a MutArray from the first N elements of a list. The array is allocated to size N, if the list terminates before N elements then the array may hold less than N elements.
fromListN :: MonadIO m => Int -> [a] -> m (MutArray a)streamly-core Streamly.Data.MutArray.Generic No documentation available.
fromListM :: Applicative m => Unfold m [m a] astreamly-core Streamly.Data.Unfold Convert a list of monadic values to a Stream
fromListN :: Unbox a => Int -> [a] -> Array astreamly-core Streamly.Internal.Data.Array Create an Array from the first N elements of a list. The array is allocated to size N, if the list terminates before N elements then the array may hold less than N elements.
fromListRev :: Unbox a => [a] -> Array astreamly-core Streamly.Internal.Data.Array Create an Array from a list in reverse order. The list must be of finite size. Pre-release
fromListRevN :: Unbox a => Int -> [a] -> Array astreamly-core Streamly.Internal.Data.Array Create an Array from the first N elements of a list in reverse order. The array is allocated to size N, if the list terminates before N elements then the array may hold less than N elements. Pre-release
fromListN :: Int -> [a] -> Array astreamly-core Streamly.Internal.Data.Array.Generic No documentation available.
fromListN :: (MonadIO m, Unbox a) => Int -> [a] -> m (MutArray a)streamly-core Streamly.Internal.Data.MutArray Create a MutArray from the first N elements of a list. The array is allocated to size N, if the list terminates before N elements then the array may hold less than N elements.