Copyright | (c) 2019 Composewell Technologies |
---|---|
License | BSD-3-Clause |
Maintainer | streamly@composewell.com |
Stability | experimental |
Portability | GHC |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Unconstrained version of Streamly.Data.Array module.
See the Streamly.Data.Array module for documentation.
Synopsis
- data Array a
- fromListN :: Int -> [a] -> Array a
- fromList :: [a] -> Array a
- writeN :: MonadIO m => Int -> Fold m a (Array a)
- write :: MonadIO m => Fold m a (Array a)
- read :: Monad m => Array a -> Stream m a
- readRev :: Monad m => Array a -> Stream m a
- reader :: Monad m => Unfold m (Array a) a
- length :: Array a -> Int
Documentation
Construction
write :: MonadIO m => Fold m a (Array a) Source #
Fold the whole input to a single array.
Caution! Do not use this on infinite streams.