Add Scanl module

This commit is contained in:
Harendra Kumar 2024-07-25 05:10:16 +05:30
parent 2657fe2713
commit 3b5205e365
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{-# LANGUAGE CPP #-}
-- |
-- Module : Streamly.Internal.Data.Scanl
-- Copyright : (c) 2024 Composewell Technologies
-- License : BSD3
-- Maintainer : streamly@composewell.com
-- Stability : experimental
-- Portability : GHC
--
module Streamly.Internal.Data.Scanl
(
-- * Imports
-- $setup
module Streamly.Internal.Data.Scanl.Type
, module Streamly.Internal.Data.Scanl.Combinators
-- , module Streamly.Internal.Data.Fold.Container
)
where
import Streamly.Internal.Data.Scanl.Combinators
-- import Streamly.Internal.Data.Fold.Container
import Streamly.Internal.Data.Scanl.Type
#include "DocTestDataFold.hs"

View File

@ -355,6 +355,7 @@ library
-- streamly-containers (non-base)
, Streamly.Internal.Data.Fold
, Streamly.Internal.Data.Scanl
-- streamly-core-data-arrays
, Streamly.Internal.Data.Array.Generic