streamly-core-0.2.0: src/Streamly/Data/Array/Generic.hs
-- |
-- Module : Streamly.Data.Array.Generic
-- Copyright : (c) 2019 Composewell Technologies
--
-- License : BSD-3-Clause
-- Maintainer : streamly@composewell.com
-- Stability : experimental
-- Portability : GHC
--
-- Unconstrained version of "Streamly.Data.Array" module.
--
-- See the "Streamly.Data.Array" module for documentation.
--
module Streamly.Data.Array.Generic
( Array
-- * Construction
, A.fromListN
, A.fromList
-- MonadicAPIs
, A.writeN
, A.write
-- * Conversion
, A.toList
-- * Streams
, A.read
, A.readRev
-- * Unfolds
, A.reader
-- , A.readerRev
-- * Random Access
, A.length
, A.getIndex
-- -- * Folding Arrays
-- , A.streamFold
-- , A.fold
)
where
import Streamly.Internal.Data.Array.Generic (Array)
import qualified Streamly.Internal.Data.Array.Generic as A