streamly-core-0.3.0: Streaming, parsers, arrays, serialization and more
Copyright(c) 2024 Composewell Technologies
LicenseBSD3
Maintainerstreamly@composewell.com
Stabilityexperimental
PortabilityGHC
Safe HaskellNone
LanguageHaskell2010

Streamly.Internal.Data.Scanl

Contents

Description

Left scans.

Scanl vs Fold

Folds and scans both are consumers of streams. A left scan is a generalization of a fold. While the output of a fold is a singleton value, the output of a scan is a stream. A fold is equivalent to a left scan which produces only the final value in the output stream.

Like folds, a scan has an internal state. Unlike a fold, a scan produces an output on each input, the output is a function of the scan state and the input.

A Scanl m a b can represent a Fold m a b by discarding the intermediate outputs and keeping only the final output of the scan.

Since folds do not care about intermediate values, we do not need the extract function for folds. Because folds do not have a requirement for intermediate values, they can be used for implementing combinators like splitWith where intermediate values are not meaningful and are expensive to compute. Folds provide an applicative and monad behavior to consume the stream in parts and compose the folded results. Scans provide Category like composition and stream zip applicative behavior. The finalization function of a fold would return a single value whereas for scan it may be a stream draining the scan buffer. For these reasons, scans and folds are required as independent abstractions.

Scanl vs Pipe

A scan is a simpler version of the consumer side of pipes. A left scan always produces an output whereas a pipe has an additional ability to skip output. Scans are simpler abstractions to think about compared to pipes and easier for the compiler to optimize and fuse.

Compositions

Scans can be chained in the same way as function composition (Category) and can distribute input (tee Applicative). Folds provide an applicative and monad behavior to consume the stream in parts and compose the folded results. Folds are also a special case of parsers.

Synopsis

Imports

>>> :m
>>> :set -XFlexibleContexts
>>> import Control.Monad (void)
>>> import qualified Data.Foldable as Foldable
>>> import Data.Bifunctor(bimap)
>>> import Data.Function ((&))
>>> import Data.Functor.Identity (Identity, runIdentity)
>>> import Data.IORef (newIORef, readIORef, writeIORef)
>>> import Data.Maybe (fromJust, isJust)
>>> import Data.Monoid (Endo(..), Last(..), Sum(..))
>>> import Streamly.Data.Array (Array)
>>> import Streamly.Data.Fold (Fold, Tee(..))
>>> import Streamly.Data.Stream (Stream)
>>> import qualified Data.Map as Map
>>> import qualified Data.Set as Set
>>> import qualified Data.IntSet as IntSet
>>> import qualified Streamly.Data.Array as Array
>>> import qualified Streamly.Data.Fold as Fold
>>> import qualified Streamly.Data.MutArray as MutArray
>>> import qualified Streamly.Data.Parser as Parser
>>> import qualified Streamly.Data.Stream as Stream
>>> import qualified Streamly.Data.StreamK as StreamK
>>> import qualified Streamly.Data.Unfold as Unfold

For APIs that have not been released yet.

>>> import qualified Streamly.Internal.Data.Fold as Fold
>>> import qualified Streamly.Internal.Data.Scanl as Scanl
>>> import qualified Streamly.Internal.Data.Stream as Stream

range :: forall (m :: Type -> Type) a. (Monad m, Ord a) => Scanl m a (Maybe (a, a)) Source #

Find minimum and maximum elements i.e. (min, max).

genericLength :: forall (m :: Type -> Type) b a. (Monad m, Num b) => Scanl m a b Source #

Like length, except with a more general Num return value

Definition:

>>> genericLength = fmap getSum $ Scanl.foldMap (Sum . const  1)
>>> genericLength = Scanl.mkScanl (\n _ -> n + 1) 0

Pre-release

maximumBy :: forall (m :: Type -> Type) a. Monad m => (a -> a -> Ordering) -> Scanl m a (Maybe a) Source #

Determine the maximum element in a stream using the supplied comparison function.

minimumBy :: forall (m :: Type -> Type) a. Monad m => (a -> a -> Ordering) -> Scanl m a (Maybe a) Source #

Computes the minimum element with respect to the given comparison function

length :: forall (m :: Type -> Type) a. Monad m => Scanl m a Int Source #

Determine the length of the input stream.

Definition:

>>> length = Scanl.genericLength
>>> length = fmap getSum $ Scanl.foldMap (Sum . const  1)

filter :: forall (m :: Type -> Type) a r. Monad m => (a -> Bool) -> Scanl m a r -> Scanl m a r Source #

Include only those elements that pass a predicate.

>>> Stream.toList $ Stream.scanl (Scanl.filter (> 5) Scanl.sum) $ Stream.fromList [1..10]
[0,0,0,0,0,0,6,13,21,30,40]
>>> filter p = Scanl.postscanlMaybe (Scanl.filtering p)
>>> filter p = Scanl.filterM (return . p)
>>> filter p = Scanl.mapMaybe (\x -> if p x then Just x else Nothing)

const :: forall (m :: Type -> Type) b a. Applicative m => b -> Scanl m a b Source #

Make a scan that yields the supplied value on any input.

Pre-release

toList :: forall (m :: Type -> Type) a. Monad m => Scanl m a [a] Source #

Scans the input stream building a list.

Warning! working on large lists accumulated as buffers in memory could be very inefficient, consider using Streamly.Data.Array instead.

>>> toList = Scanl.mkScanr (:) []

catMaybes :: forall (m :: Type -> Type) a b. Monad m => Scanl m a b -> Scanl m (Maybe a) b Source #

Modify a scan to receive a Maybe input, the Just values are unwrapped and sent to the original scan, Nothing values are discarded.

>>> catMaybes = Scanl.mapMaybe id
>>> catMaybes = Scanl.filter isJust . Scanl.lmap fromJust

maximum :: forall (m :: Type -> Type) a. (Monad m, Ord a) => Scanl m a (Maybe a) Source #

Determine the maximum element in a stream.

Definitions:

>>> maximum = Scanl.maximumBy compare
>>> maximum = Scanl.mkScanl1 max

Same as the following but without a default maximum. The Max Monoid uses the minBound as the default maximum:

>>> maximum = fmap Data.Semigroup.getMax $ Scanl.foldMap Data.Semigroup.Max

minimum :: forall (m :: Type -> Type) a. (Monad m, Ord a) => Scanl m a (Maybe a) Source #

Determine the minimum element in a stream using the supplied comparison function.

Definitions:

>>> minimum = Scanl.minimumBy compare
>>> minimum = Scanl.mkScanl1 min

Same as the following but without a default minimum. The Min Monoid uses the maxBound as the default maximum:

>>> maximum = fmap Data.Semigroup.getMin $ Scanl.foldMap Data.Semigroup.Min

take :: forall (m :: Type -> Type) a b. Monad m => Int -> Scanl m a b -> Scanl m a b Source #

Take at most n input elements and scan them using the supplied scan. A negative count is treated as 0.

>>> Stream.toList $ Stream.scanl (Scanl.take 2 Scanl.toList) $ Stream.fromList [1..10]
[[],[1],[1,2]]

filterM :: Monad m => (a -> m Bool) -> Scanl m a r -> Scanl m a r Source #

Like filter but with a monadic predicate.

>>> f p x = p x >>= \r -> return $ if r then Just x else Nothing
>>> filterM p = Scanl.mapMaybeM (f p)

data Step s b Source #

Represents the result of the step of a Fold. Partial returns an intermediate state of the fold, the fold step can be called again with the state or the driver can use extract on the state to get the result out. Done returns the final result and the fold cannot be driven further.

Pre-release

Constructors

Partial !s 
Done !b 

Instances

Instances details
Bifunctor Step Source #

first maps over the fold state and second maps over the fold result.

Instance details

Defined in Streamly.Internal.Data.Fold.Step

Methods

bimap :: (a -> b) -> (c -> d) -> Step a c -> Step b d #

first :: (a -> b) -> Step a c -> Step b c #

second :: (b -> c) -> Step a b -> Step a c #

Functor (Step s) Source #

fmap maps over Done.

fmap = second
Instance details

Defined in Streamly.Internal.Data.Fold.Step

Methods

fmap :: (a -> b) -> Step s a -> Step s b #

(<$) :: a -> Step s b -> Step s a #

lmapM :: Monad m => (a -> m b) -> Scanl m b r -> Scanl m a r Source #

lmapM f scan maps the monadic function f on the input of the scan.

rmapM :: Monad m => (b -> m c) -> Scanl m a b -> Scanl m a c Source #

Map a monadic function on the output of a scan.

mapMStep :: Applicative m => (a -> m b) -> Step s a -> m (Step s b) Source #

Map a monadic function over the result b in Step s b.

Internal

toStreamK :: forall (m :: Type -> Type) a (n :: Type -> Type). Monad m => Scanl m a (StreamK n a) Source #

Scans its input building a pure stream.

>>> toStreamK = fmap StreamK.reverse Scanl.toStreamKRev

Internal

morphInner :: (forall x. m x -> n x) -> Scanl m a b -> Scanl n a b Source #

Change the underlying monad of a scan. Also known as hoist.

Pre-release

data Scanl (m :: Type -> Type) a b Source #

The type Scanl m a b represents a consumer of an input stream of values of type a and returning a final value of type b in Monad m. The constructor of a scan is Scanl step initial extract final.

The scan uses an internal state of type s. The initial value of the state s is created by initial. This function is called once and only once before the scan starts consuming input. Any resource allocation can be done in this function.

The step function is called on each input, it consumes an input and returns the next intermediate state (see Step) or the final result b if the scan terminates.

The extract function is used by the scan driver to map the current state s of the scan to the scan result. Thus extract can be called multiple times.

Before a scan terminates, final is called once and only once (unless the scan terminated in initial itself). Any resources allocated by initial can be released in final. In scan that do not require any cleanup extract and final are typically the same.

When implementing scan combinators, care should be taken to cleanup any state of the argument folds held by the fold by calling the respective final at all exit points of the scan. Also, final should not be called more than once. Note that if a scan terminates by Done constructor, there is no state to cleanup.

NOTE: The constructor is not yet released, smart constructors are provided to create scans.

Constructors

Scanl (s -> a -> m (Step s b)) (m (Step s b)) (s -> m b) (s -> m b)

Scanl step initial extract final

Instances

Instances details
Monad m => Applicative (Scanl m a) Source # 
Instance details

Defined in Streamly.Internal.Data.Scanl.Type

Methods

pure :: a0 -> Scanl m a a0 #

(<*>) :: Scanl m a (a0 -> b) -> Scanl m a a0 -> Scanl m a b #

liftA2 :: (a0 -> b -> c) -> Scanl m a a0 -> Scanl m a b -> Scanl m a c #

(*>) :: Scanl m a a0 -> Scanl m a b -> Scanl m a b #

(<*) :: Scanl m a a0 -> Scanl m a b -> Scanl m a a0 #

Functor m => Functor (Scanl m a) Source #

Maps a function on the output of the scan (the type b).

Instance details

Defined in Streamly.Internal.Data.Scanl.Type

Methods

fmap :: (a0 -> b) -> Scanl m a a0 -> Scanl m a b #

(<$) :: a0 -> Scanl m a b -> Scanl m a a0 #

takeEndBy :: forall (m :: Type -> Type) a b. Monad m => (a -> Bool) -> Scanl m a b -> Scanl m a b Source #

Take the input, stop when the predicate succeeds taking the succeeding element as well.

Example:

>>> input = Stream.fromList "hello\nthere\n"
>>> line = Scanl.takeEndBy (== '\n') Scanl.toList
>>> Stream.toList $ Stream.scanl line input
["","h","he","hel","hell","hello","hello\n"]

takeEndBy_ :: forall (m :: Type -> Type) a b. Monad m => (a -> Bool) -> Scanl m a b -> Scanl m a b Source #

Like takeEndBy but drops the element on which the predicate succeeds.

Example:

>>> input = Stream.fromList "hello\nthere\n"
>>> line = Scanl.takeEndBy_ (== '\n') Scanl.toList
>>> Stream.toList $ Stream.scanl line input
["","h","he","hel","hell","hello","hello"]

functionM :: Monad m => (a -> m (Maybe b)) -> Scanl m a (Maybe b) Source #

Lift a Maybe returning function to a scan.

teeWith :: forall (m :: Type -> Type) b c d a. Monad m => (b -> c -> d) -> Scanl m a b -> Scanl m a c -> Scanl m a d Source #

teeWith k f1 f2 distributes its input to both f1 and f2 until any one of them terminates. The outputs of the two scans are combined using the function k.

Definition:

>>> teeWith k f1 f2 = fmap (uncurry k) (Scanl.tee f1 f2)

Example:

>>> avg = Scanl.teeWith (/) Scanl.sum (fmap fromIntegral Scanl.length)
>>> Stream.toList $ Stream.postscanl avg $ Stream.fromList [1.0..10.0]
[1.0,1.5,2.0,2.5,3.0,3.5,4.0,4.5,5.0,5.5]

Note that nested applications of teeWith do not fuse.

Pre-release

lmap :: forall a b (m :: Type -> Type) r. (a -> b) -> Scanl m b r -> Scanl m a r Source #

lmap f scan maps the function f on the input of the scan.

Definition:

>>> lmap = Scanl.lmapM return

Example:

>>> sumSquared = Scanl.lmap (\x -> x * x) Scanl.sum
>>> Stream.toList $ Stream.scanl sumSquared (Stream.enumerateFromTo 1 10)
[0,1,5,14,30,55,91,140,204,285,385]

drain :: forall (m :: Type -> Type) a. Monad m => Scanl m a () Source #

A scan that drains all its input, running the effects and discarding the results.

>>> drain = Scanl.drainMapM (const (return ()))
>>> drain = Scanl.mkScanl (\_ _ -> ()) ()

latest :: forall (m :: Type -> Type) a. Monad m => Scanl m a (Maybe a) Source #

Returns the latest element of the input stream, if any.

>>> latest = Scanl.mkScanl1 (\_ x -> x)
>>> latest = fmap getLast $ Scanl.foldMap (Last . Just)

catLefts :: forall (m :: Type -> Type) a c b. Monad m => Scanl m a c -> Scanl m (Either a b) c Source #

Discard Rights and unwrap Lefts in an Either stream.

Pre-release

catRights :: forall (m :: Type -> Type) b c a. Monad m => Scanl m b c -> Scanl m (Either a b) c Source #

Discard Lefts and unwrap Rights in an Either stream.

Pre-release

catEithers :: forall (m :: Type -> Type) a b. Scanl m a b -> Scanl m (Either a a) b Source #

Remove the either wrapper and flatten both lefts and as well as rights in the output stream.

Definition:

>>> catEithers = Scanl.lmap (either id id)

Pre-release

postscanl :: forall (m :: Type -> Type) a b c. Monad m => Scanl m a b -> Scanl m b c -> Scanl m a c Source #

Postscan the input of a Scanl to change it in a stateful manner using another Scanl.

This is basically an append operation.

Pre-release

mkScanl :: forall (m :: Type -> Type) b a. Monad m => (b -> a -> b) -> b -> Scanl m a b Source #

Make a scan from a left fold style pure step function and initial value of the accumulator.

If your Scanl returns only Partial (i.e. never returns a Done) then you can use mkScanl* constructors.

mkScanlM :: Monad m => (b -> a -> m b) -> m b -> Scanl m a b Source #

Make a scan from a left fold style monadic step function and initial value of the accumulator.

mkScanl1 :: forall (m :: Type -> Type) a. Monad m => (a -> a -> a) -> Scanl m a (Maybe a) Source #

Make a strict left scan, for non-empty streams, using first element as the starting value. Returns Nothing if the stream is empty.

Pre-release

mkScanl1M :: Monad m => (a -> a -> m a) -> Scanl m a (Maybe a) Source #

Like mkScanl1 but with a monadic step function.

Pre-release

mkScanr :: forall (m :: Type -> Type) a b. Monad m => (a -> b -> b) -> b -> Scanl m a b Source #

Make a scan using a right fold style step function and a terminal value. It performs a strict right fold via a left fold using function composition. Note that a strict right fold can only be useful for constructing strict structures in memory. For reductions this will be very inefficient.

Definitions:

>>> mkScanr f z = fmap (flip appEndo z) $ Scanl.foldMap (Endo . f)
>>> mkScanr f z = fmap ($ z) $ Scanl.mkScanl (\g x -> g . f x) id

Example:

>>> Stream.toList $ Stream.scanl (Scanl.mkScanr (:) []) $ Stream.enumerateFromTo 1 5
[[],[1],[1,2],[1,2,3],[1,2,3,4],[1,2,3,4,5]]

postscanlMaybe :: forall (m :: Type -> Type) a b c. Monad m => Scanl m a (Maybe b) -> Scanl m b c -> Scanl m a c Source #

Scan using a Maybe returning scan, filter out Nothing values.

>>> postscanlMaybe p f = Scanl.postscanl p (Scanl.catMaybes f)

Pre-release

chainStepM :: Applicative m => (s1 -> m s2) -> (a -> m (Step s2 b)) -> Step s1 a -> m (Step s2 b) Source #

If Partial then map the state, if Done then call the next step.

fromRefold :: forall (m :: Type -> Type) c a b. Refold m c a b -> c -> Scanl m a b Source #

Make a scan from a consumer.

Internal

toStreamKRev :: forall (m :: Type -> Type) a (n :: Type -> Type). Monad m => Scanl m a (StreamK n a) Source #

Buffers the input stream to a pure stream in the reverse order of the input.

This is more efficient than toStreamK. toStreamK has exactly the same performance as reversing the stream after toStreamKRev.

Pre-release

filtering :: forall (m :: Type -> Type) a. Monad m => (a -> Bool) -> Scanl m a (Maybe a) Source #

A scan for filtering elements based on a predicate.

taking :: forall (m :: Type -> Type) a. Monad m => Int -> Scanl m a (Maybe a) Source #

dropping :: forall (m :: Type -> Type) a. Monad m => Int -> Scanl m a (Maybe a) Source #

generalizeInner :: forall (m :: Type -> Type) a b. Monad m => Scanl Identity a b -> Scanl m a b Source #

Adapt a pure scan to any monad.

>>> generalizeInner = Scanl.morphInner (return . runIdentity)

Pre-release

rangeBy :: forall (m :: Type -> Type) a. Monad m => (a -> a -> Ordering) -> Scanl m a (Maybe (a, a)) Source #

Find minimum and maximum element using the provided comparison function.

mkScant :: forall (m :: Type -> Type) s a b. Monad m => (s -> a -> Step s b) -> Step s b -> (s -> b) -> Scanl m a b Source #

Make a terminating scan using a pure step function, a pure initial state and a pure state extraction function.

Pre-release

mkScantM :: (s -> a -> m (Step s b)) -> m (Step s b) -> (s -> m b) -> Scanl m a b Source #

Make a terminating scan with an effectful step function and initial state, and a state extraction function.

>>> mkScantM = Scanl.Scanl

We can just use Scanl but it is provided for completeness.

Pre-release

mkScanrM :: Monad m => (a -> b -> m b) -> m b -> Scanl m a b Source #

Like mkScanr but with a monadic step function.

Example:

>>> toList = Scanl.mkScanrM (\a xs -> return $ a : xs) (return [])

Pre-release

constM :: Applicative m => m b -> Scanl m a b Source #

Make a scan that runs the supplied effect once and then yields the result on any input.

Pre-release

windowMinimum :: forall (m :: Type -> Type) a. (MonadIO m, Unbox a, Ord a) => Int -> Scanl m a (Maybe a) Source #

Find the minimum element in a rolling window.

See the performance related comments in windowRange.

If you want to compute the minimum of the entire stream minimum is much faster.

Time: \(\mathcal{O}(n*w)\) where \(w\) is the window size.

windowMaximum :: forall (m :: Type -> Type) a. (MonadIO m, Unbox a, Ord a) => Int -> Scanl m a (Maybe a) Source #

The maximum element in a rolling window.

See the performance related comments in windowRange.

If you want to compute the maximum of the entire stream maximum would be much faster.

Time: \(\mathcal{O}(n*w)\) where \(w\) is the window size.

windowRange :: forall (m :: Type -> Type) a. (MonadIO m, Unbox a, Ord a) => Int -> Scanl m a (Maybe (a, a)) Source #

Determine the maximum and minimum in a rolling window.

This implementation traverses the entire window buffer to compute the range whenever we demand it. It performs better than the dequeue based implementation in streamly-statistics package when the window size is small (< 30).

If you want to compute the range of the entire stream range would be much faster.

Space: \(\mathcal{O}(n)\) where n is the window size.

Time: \(\mathcal{O}(n*w)\) where \(w\) is the window size.

data Incr a Source #

Represents incremental input for a scan. Insert means a new element is being added to the collection, Replace means an old value in the collection is being replaced with a new value.

Constructors

Insert !a 
Replace !a !a

Replace old new

Instances

Instances details
Functor Incr Source # 
Instance details

Defined in Streamly.Internal.Data.Scanl.Window

Methods

fmap :: (a -> b) -> Incr a -> Incr b #

(<$) :: a -> Incr b -> Incr a #

cumulativeScan :: forall (m :: Type -> Type) a b. Scanl m (Incr a) b -> Scanl m a b Source #

Convert an incremental scan to a cumulative scan using the entire input stream as a single window.

>>> cumulativeScan = Scanl.lmap Scanl.Insert

incrScan :: forall (m :: Type -> Type) a b. (MonadIO m, Unbox a) => Int -> Scanl m (Incr a) b -> Scanl m a b Source #

incrScan collector is an incremental sliding window scan that does not require all the intermediate elements in each step of the scan computation. This maintains n elements in the window, when a new element comes it slides out the oldest element. The new element along with the old element are supplied to the collector scan.

incrScanWith :: forall (m :: Type -> Type) a b. (MonadIO m, Unbox a) => Int -> Scanl m (Incr a, RingArray a) b -> Scanl m a b Source #

Like incrScan but also provides the ring array to the scan. The ring array reflects the state of the ring after inserting the incoming element.

IMPORTANT NOTE: The ring is mutable, therefore, references to it should not be stored and used later, the state would have changed by then. If you need to store it then copy it to an array or another ring and store it.

incrRollingMap :: forall (m :: Type -> Type) a b. Monad m => (Maybe a -> a -> Maybe b) -> Scanl m (Incr a) (Maybe b) Source #

Apply a pure function on the latest and the oldest element of the window.

>>> incrRollingMap f = Scanl.incrRollingMapM (\x y -> return $ f x y)

incrRollingMapM :: Monad m => (Maybe a -> a -> m (Maybe b)) -> Scanl m (Incr a) (Maybe b) Source #

Apply an effectful function on the entering and the exiting element of the window. The first argument of the mapped function is the exiting element and the second argument is the entering element.

incrCount :: forall (m :: Type -> Type) b a. (Monad m, Num b) => Scanl m (Incr a) b Source #

The number of elements in the rolling window.

This is the \(0\)th power sum.

>>> incrCount = Scanl.incrPowerSum 0

incrSum :: forall (m :: Type -> Type) a. (Monad m, Num a) => Scanl m (Incr a) a Source #

Sum of all the elements in a rolling window:

\(S = \sum_{i=1}^n x_{i}\)

This is the first power sum.

>>> incrSum = Scanl.incrPowerSum 1

Uses Kahan-Babuska-Neumaier style summation for numerical stability of floating precision arithmetic.

Space: \(\mathcal{O}(1)\)

Time: \(\mathcal{O}(n)\)

incrSumInt :: forall (m :: Type -> Type) a. (Monad m, Integral a) => Scanl m (Incr a) a Source #

The sum of all the elements in a rolling window. The input elements are required to be integral numbers.

This was written in the hope that it would be a tiny bit faster than incrSum for Integral values. But turns out that incrSum is 2% faster than this even for integral values!

Internal

incrPowerSum :: forall (m :: Type -> Type) a. (Monad m, Num a) => Int -> Scanl m (Incr a) a Source #

Sum of the \(k\)th power of all the elements in a rolling window:

\(S_k = \sum_{i=1}^n x_{i}^k\)

>>> incrPowerSum k = Scanl.lmap (fmap (^ k)) Scanl.incrSum

Space: \(\mathcal{O}(1)\)

Time: \(\mathcal{O}(n)\)

incrPowerSumFrac :: forall (m :: Type -> Type) a. (Monad m, Floating a) => a -> Scanl m (Incr a) a Source #

Like incrPowerSum but powers can be negative or fractional. This is slower than incrPowerSum for positive intergal powers.

>>> incrPowerSumFrac p = Scanl.lmap (fmap (** p)) Scanl.incrSum

incrMean :: forall (m :: Type -> Type) a. (Monad m, Fractional a) => Scanl m (Incr a) a Source #

Arithmetic mean of elements in a sliding window:

\(\mu = \frac{\sum_{i=1}^n x_{i}}{n}\)

This is also known as the Simple Moving Average (SMA) when used in the sliding window and Cumulative Moving Avergae (CMA) when used on the entire stream.

>>> incrMean = Scanl.teeWith (/) Scanl.incrSum Scanl.incrCount

Space: \(\mathcal{O}(1)\)

Time: \(\mathcal{O}(n)\)

mapMaybe :: forall (m :: Type -> Type) a b r. Monad m => (a -> Maybe b) -> Scanl m b r -> Scanl m a r Source #

mapMaybe f scan maps a Maybe returning function f on the input of the scan, filters out Nothing elements, and return the values extracted from Just.

>>> mapMaybe f = Scanl.lmap f . Scanl.catMaybes
>>> mapMaybe f = Scanl.mapMaybeM (return . f)
>>> f x = if even x then Just x else Nothing
>>> scn = Scanl.mapMaybe f Scanl.toList
>>> Stream.toList $ Stream.scanl scn (Stream.enumerateFromTo 1 10)
[[],[],[2],[2],[2,4],[2,4],[2,4,6],[2,4,6],[2,4,6,8],[2,4,6,8],[2,4,6,8,10]]

unzip :: forall (m :: Type -> Type) a x b y. Monad m => Scanl m a x -> Scanl m b y -> Scanl m (a, b) (x, y) Source #

Send the elements of tuples in a stream of tuples through two different scans.

                          |-------Scanl m a x--------|
---------stream of (a,b)--|                          |----m (x,y)
                          |-------Scanl m b y--------|

Definition:

>>> unzip = Scanl.unzipWith id

This is the consumer side dual of the producer side zip operation.

with :: forall (m :: Type -> Type) s a b c. (Scanl m (s, a) b -> Scanl m a b) -> (((s, a) -> c) -> Scanl m (s, a) b -> Scanl m (s, a) b) -> ((s, a) -> c) -> Scanl m a b -> Scanl m a b Source #

Change the predicate function of a Scanl from a -> b to accept an additional state input (s, a) -> b. Convenient to filter with an addiitonal index or time input.

>>> filterWithIndex = Scanl.with Scanl.indexed Scanl.filter
filterWithAbsTime = with timestamped filter
filterWithRelTime = with timeIndexed filter

Pre-release

foldMap :: forall (m :: Type -> Type) b a. (Monad m, Monoid b) => (a -> b) -> Scanl m a b Source #

Definition:

>>> foldMap f = Scanl.lmap f Scanl.mconcat

Make a scan from a pure function that scans the output of the function using mappend and mempty.

>>> sum = Scanl.foldMap Data.Monoid.Sum
>>> Stream.toList $ Stream.scanl sum $ Stream.enumerateFromTo 1 3
[Sum {getSum = 0},Sum {getSum = 1},Sum {getSum = 3},Sum {getSum = 6}]

mconcat :: forall (m :: Type -> Type) a. (Monad m, Monoid a) => Scanl m a a Source #

Monoid concat. Scan an input stream consisting of monoidal elements using mappend and mempty.

Definition:

>>> mconcat = Scanl.sconcat mempty
>>> monoids = fmap Data.Monoid.Sum $ Stream.enumerateFromTo 1 3
>>> Stream.toList $ Stream.scanl Scanl.mconcat monoids
[Sum {getSum = 0},Sum {getSum = 1},Sum {getSum = 3},Sum {getSum = 6}]

sconcat :: forall (m :: Type -> Type) a. (Monad m, Semigroup a) => a -> Scanl m a a Source #

Semigroup concat. Append the elements of an input stream to a provided starting value.

Definition:

>>> sconcat = Scanl.mkScanl (<>)
>>> semigroups = fmap Data.Monoid.Sum $ Stream.enumerateFromTo 1 3
>>> Stream.toList $ Stream.scanl (Scanl.sconcat 3) semigroups
[Sum {getSum = 3},Sum {getSum = 4},Sum {getSum = 6},Sum {getSum = 9}]

sum :: forall (m :: Type -> Type) a. (Monad m, Num a) => Scanl m a a Source #

Determine the sum of all elements of a stream of numbers. Returns additive identity (0) when the stream is empty. Note that this is not numerically stable for floating point numbers.

>>> sum = Scanl.cumulativeScan Scanl.incrSum

Same as following but numerically stable:

>>> sum = Scanl.mkScanl (+) 0
>>> sum = fmap Data.Monoid.getSum $ Scanl.foldMap Data.Monoid.Sum

product :: forall (m :: Type -> Type) a. (Monad m, Num a, Eq a) => Scanl m a a Source #

Determine the product of all elements of a stream of numbers. Returns multiplicative identity (1) when the stream is empty. The scan terminates when it encounters (0) in its input.

Same as the following but terminates on multiplication by 0:

>>> product = fmap Data.Monoid.getProduct $ Scanl.foldMap Data.Monoid.Product

scanl :: forall (m :: Type -> Type) a b c. Monad m => Scanl m a b -> Scanl m b c -> Scanl m a c Source #

Scan the input of a Scanl to change it in a stateful manner using another Scanl. The scan stops as soon as any of the scans terminates.

This is basically an append operation.

Pre-release

elemIndices :: forall (m :: Type -> Type) a. (Monad m, Eq a) => a -> Scanl m a (Maybe Int) Source #

Returns the index of the latest element if the element matches the given value.

Definition:

>>> elemIndices a = Scanl.findIndices (== a)

findIndices :: forall (m :: Type -> Type) a. Monad m => (a -> Bool) -> Scanl m a (Maybe Int) Source #

Returns the index of the latest element if the element satisfies the given predicate.

deleteBy :: forall (m :: Type -> Type) a. Monad m => (a -> a -> Bool) -> a -> Scanl m a (Maybe a) Source #

Returns the latest element omitting the first occurrence that satisfies the given equality predicate.

Example:

>>> input = Stream.fromList [1,3,3,5]
>>> Stream.toList $ Stream.postscanlMaybe (Scanl.deleteBy (==) 3) input
[1,3,5]

partition :: forall (m :: Type -> Type) b x c. Monad m => Scanl m b x -> Scanl m c x -> Scanl m (Either b c) x Source #

Compose two scans such that the combined scan accepts a stream of Either and routes the Left values to the first scan and Right values to the second scan.

Definition:

>>> partition = Scanl.partitionBy id

the :: forall (m :: Type -> Type) a. (Monad m, Eq a) => Scanl m a (Maybe a) Source #

Terminates with Nothing as soon as it finds an element different than the previous one, returns the element if the entire input consists of the same element.

unzipWith :: forall (m :: Type -> Type) a b c x y. Monad m => (a -> (b, c)) -> Scanl m b x -> Scanl m c y -> Scanl m a (x, y) Source #

Split elements in the input stream into two parts using a pure splitter function, direct each part to a different scan and zip the results.

Definitions:

>>> unzipWith f = Scanl.unzipWithM (return . f)
>>> unzipWith f fld1 fld2 = Scanl.lmap f (Scanl.unzip fld1 fld2)

This scan terminates as soon as any of the input scans terminate.

Pre-release

toStream :: forall (m :: Type -> Type) (n :: Type -> Type) a. (Monad m, Monad n) => Scanl m a (Stream n a) Source #

A scan that buffers its input to a pure stream.

Warning! working on large streams accumulated as buffers in memory could be very inefficient, consider using Streamly.Data.Array instead.

>>> toStream = fmap Stream.fromList Scanl.toList

Pre-release

scanlMany :: forall (m :: Type -> Type) a b c. Monad m => Scanl m a b -> Scanl m b c -> Scanl m a c Source #

Scan the input of a Scanl to change it in a stateful manner using another Scanl. The scan restarts with a fresh state if it terminates.

Pre-release

indexed :: forall (m :: Type -> Type) a b. Monad m => Scanl m (Int, a) b -> Scanl m a b Source #

Pair each element of a scan input with its index, starting from index 0.

>>> indexed = Scanl.postscanlMaybe Scanl.indexing

sampleFromthen :: forall (m :: Type -> Type) a b. Monad m => Int -> Int -> Scanl m a b -> Scanl m a b Source #

sampleFromthen offset stride samples the element at offset index and then every element at strides of stride.

tee :: forall (m :: Type -> Type) a b c. Monad m => Scanl m a b -> Scanl m a c -> Scanl m a (b, c) Source #

Distribute one copy of the stream to each scan and zip the results.

                |-------Scanl m a b--------|
---stream m a---|                          |---m (b,c)
                |-------Scanl m a c--------|

Definition:

>>> tee = Scanl.teeWith (,)

Example:

>>> t = Scanl.tee Scanl.sum Scanl.length
>>> Stream.toList $ Stream.scanl t (Stream.enumerateFromTo 1.0 10.0)
[(0.0,0),(1.0,1),(3.0,2),(6.0,3),(10.0,4),(15.0,5),(21.0,6),(28.0,7),(36.0,8),(45.0,9),(55.0,10)]

foldMapM :: (Monad m, Monoid b) => (a -> m b) -> Scanl m a b Source #

Definition:

>>> foldMapM f = Scanl.lmapM f Scanl.mconcat

Make a scan from a monadic function that scans the output of the function using mappend and mempty.

>>> sum = Scanl.foldMapM (return . Data.Monoid.Sum)
>>> Stream.toList $ Stream.scanl sum $ Stream.enumerateFromTo 1 3
[Sum {getSum = 0},Sum {getSum = 1},Sum {getSum = 3},Sum {getSum = 6}]

drainMapM :: Monad m => (a -> m b) -> Scanl m a () Source #

Definitions:

>>> drainMapM f = Scanl.lmapM f Scanl.drain
>>> drainMapM f = Scanl.foldMapM (void . f)

Drain all input after passing it through a monadic function. This is the dual of mapM_ on stream producers.

mean :: forall (m :: Type -> Type) a. (Monad m, Fractional a) => Scanl m a a Source #

Compute a numerically stable arithmetic mean of all elements in the input stream.

rollingHash :: forall (m :: Type -> Type) a. (Monad m, Enum a) => Scanl m a Int64 Source #

Compute an Int sized polynomial rolling hash of a stream.

>>> rollingHash = Scanl.rollingHashWithSalt Scanl.defaultSalt

rollingHashWithSalt :: forall (m :: Type -> Type) a. (Monad m, Enum a) => Int64 -> Scanl m a Int64 Source #

Compute an Int sized polynomial rolling hash

H = salt * k ^ n + c1 * k ^ (n - 1) + c2 * k ^ (n - 2) + ... + cn * k ^ 0

Where c1, c2, cn are the elements in the input stream and k is a constant.

This hash is often used in Rabin-Karp string search algorithm.

See https://en.wikipedia.org/wiki/Rolling_hash

toListRev :: forall (m :: Type -> Type) a. Monad m => Scanl m a [a] Source #

Buffers the input stream to a list in the reverse order of the input.

Definition:

>>> toListRev = Scanl.mkScanl (flip (:)) []

Warning! working on large lists accumulated as buffers in memory could be very inefficient, consider using Streamly.Array instead.

topBy :: forall (m :: Type -> Type) a. (MonadIO m, Unbox a) => (a -> a -> Ordering) -> Int -> Scanl m a (MutArray a) Source #

Get the top n elements using the supplied comparison function.

To get bottom n elements instead:

>>> bottomBy cmp = Scanl.topBy (flip cmp)

Example:

>>> stream = Stream.fromList [2::Int,7,9,3,1,5,6,11,17]
>>> Stream.toList (Stream.scanl (Scanl.topBy compare 3) stream) >>= mapM MutArray.toList
[[],[17],[17,11],[17,11,9],[17,11,9],[17,11,9],[17,11,9],[17,11,9],[17,11,9],[17,11,9]]

Pre-release

uniqBy :: forall (m :: Type -> Type) a. Monad m => (a -> a -> Bool) -> Scanl m a (Maybe a) Source #

Return the latest unique element using the supplied comparison function. Returns Nothing if the current element is same as the last element otherwise returns Just.

Example, strip duplicate path separators:

>>> input = Stream.fromList "//a//b"
>>> f x y = x == '/' && y == '/'
>>> Stream.toList $ Stream.postscanlMaybe (Scanl.uniqBy f) input
"/a/b"

Space: O(1)

Pre-release

distribute :: forall (m :: Type -> Type) a b. Monad m => [Scanl m a b] -> Scanl m a [b] Source #

Distribute one copy of the stream to each scan and collect the results in a container.

                |-------Scanl m a b--------|
---stream m a---|                          |---m [b]
                |-------Scanl m a b--------|
                |                          |
                           ...
>>> Stream.toList $ Stream.scanl (Scanl.distribute [Scanl.sum, Scanl.length]) (Stream.enumerateFromTo 1 5)
[[0,0],[1,1],[3,2],[6,3],[10,4],[15,5]]
>>> distribute = Prelude.foldr (Scanl.teeWith (:)) (Scanl.const [])

This is the consumer side dual of the producer side sequence operation.

Stops as soon as any of the scans stop.

mapMaybeM :: Monad m => (a -> m (Maybe b)) -> Scanl m b r -> Scanl m a r Source #

>>> mapMaybeM f = Scanl.lmapM f . Scanl.catMaybes

unfoldMany :: forall (m :: Type -> Type) a b c. Monad m => Unfold m a b -> Scanl m b c -> Scanl m a c Source #

Unfold and flatten the input stream of a scan.

Stream.scanl (unfoldMany u f) == Stream.scanl f . Stream.unfoldMany u

Pre-release

rollingHashFirstN :: forall (m :: Type -> Type) a. (Monad m, Enum a) => Int -> Scanl m a Int64 Source #

Compute an Int sized polynomial rolling hash of the first n elements of a stream.

>>> rollingHashFirstN n = Scanl.take n Scanl.rollingHash

Pre-release

toStreamRev :: forall (m :: Type -> Type) (n :: Type -> Type) a. (Monad m, Monad n) => Scanl m a (Stream n a) Source #

Buffers the input stream to a pure stream in the reverse order of the input.

>>> toStreamRev = fmap Stream.fromList Scanl.toListRev

Warning! working on large streams accumulated as buffers in memory could be very inefficient, consider using Streamly.Data.Array instead.

Pre-release

top :: forall (m :: Type -> Type) a. (MonadIO m, Unbox a, Ord a) => Int -> Scanl m a (MutArray a) Source #

Scan the input stream to top n elements.

Definition:

>>> top = Scanl.topBy compare
>>> stream = Stream.fromList [2::Int,7,9,3,1,5,6,11,17]
>>> Stream.toList (Stream.scanl (Scanl.top 3) stream) >>= mapM MutArray.toList
[[],[17],[17,11],[17,11,9],[17,11,9],[17,11,9],[17,11,9],[17,11,9],[17,11,9],[17,11,9]]

Pre-release

bottomBy :: forall (m :: Type -> Type) a. (MonadIO m, Unbox a) => (a -> a -> Ordering) -> Int -> Scanl m a (MutArray a) Source #

Get the bottom most n elements using the supplied comparison function.

bottom :: forall (m :: Type -> Type) a. (MonadIO m, Unbox a, Ord a) => Int -> Scanl m a (MutArray a) Source #

Scan the input stream to bottom n elements.

Definition:

>>> bottom = Scanl.bottomBy compare
>>> stream = Stream.fromList [2::Int,7,9,3,1,5,6,11,17]
>>> Stream.toList (Stream.scanl (Scanl.bottom 3) stream) >>= mapM MutArray.toList
[[],[1],[1,2],[1,2,3],[1,2,3],[1,2,3],[1,2,3],[1,2,3],[1,2,3],[1,2,3]]

Pre-release

rollingMap :: forall (m :: Type -> Type) a b. Monad m => (Maybe a -> a -> b) -> Scanl m a b Source #

>>> rollingMap f = Scanl.rollingMapM (\x y -> return $ f x y)

rollingMapM :: Monad m => (Maybe a -> a -> m b) -> Scanl m a b Source #

Apply a function on every two successive elements of a stream. The first argument of the map function is the previous element and the second argument is the current element. When processing the very first element in the stream, the previous element is Nothing.

Pre-release

uniq :: forall (m :: Type -> Type) a. (Monad m, Eq a) => Scanl m a (Maybe a) Source #

See uniqBy.

Definition:

>>> uniq = Scanl.uniqBy (==)

repeated :: forall (m :: Type -> Type) a. Scanl m a (Maybe a) Source #

Emit only repeated elements, once.

Unimplemented

drainN :: forall (m :: Type -> Type) a. Monad m => Int -> Scanl m a () Source #

A scan that drains the first n elements of its input, running the effects and discarding the results.

Definition:

>>> drainN n = Scanl.take n Scanl.drain

Pre-release

takingEndByM :: Monad m => (a -> m Bool) -> Scanl m a (Maybe a) Source #

takingEndBy :: forall (m :: Type -> Type) a. Monad m => (a -> Bool) -> Scanl m a (Maybe a) Source #

>>> takingEndBy p = Scanl.takingEndByM (return . p)

takingEndByM_ :: Monad m => (a -> m Bool) -> Scanl m a (Maybe a) Source #

takingEndBy_ :: forall (m :: Type -> Type) a. Monad m => (a -> Bool) -> Scanl m a (Maybe a) Source #

>>> takingEndBy_ p = Scanl.takingEndByM_ (return . p)

droppingWhileM :: Monad m => (a -> m Bool) -> Scanl m a (Maybe a) Source #

droppingWhile :: forall (m :: Type -> Type) a. Monad m => (a -> Bool) -> Scanl m a (Maybe a) Source #

>>> droppingWhile p = Scanl.droppingWhileM (return . p)

prune :: forall a (m :: Type -> Type). (a -> Bool) -> Scanl m a (Maybe a) Source #

Strip all leading and trailing occurrences of an element passing a predicate and make all other consecutive occurrences uniq.

> prune p = Stream.dropWhileAround p $ Stream.uniqBy (x y -> p x && p y)
> Stream.prune isSpace (Stream.fromList "  hello      world!   ")
"hello world!"

Space: O(1)

Unimplemented

pipe :: forall (m :: Type -> Type) a b c. Monad m => Pipe m a b -> Scanl m b c -> Scanl m a c Source #

Attach a Pipe on the input of a Scanl.

Pre-release

zipStreamWithM :: (a -> b -> m c) -> Stream m a -> Scanl m c x -> Scanl m b x Source #

Zip a stream with the input of a scan using the supplied function.

Unimplemented

zipStream :: forall (m :: Type -> Type) a b x. Monad m => Stream m a -> Scanl m (a, b) x -> Scanl m b x Source #

Zip a stream with the input of a scan.

>>> zip = Scanl.zipStreamWithM (curry return)

Unimplemented

unzipWithM :: Monad m => (a -> m (b, c)) -> Scanl m b x -> Scanl m c y -> Scanl m a (x, y) Source #

Like unzipWith but with a monadic splitter function.

Definition:

>>> unzipWithM k f1 f2 = Scanl.lmapM k (Scanl.unzip f1 f2)

Pre-release

partitionByM :: Monad m => (a -> m (Either b c)) -> Scanl m b x -> Scanl m c x -> Scanl m a x Source #

Partition the input over two scans using an Either partitioning predicate.

                                    |-------Scanl b x--------|
-----stream m a --> (Either b c)----|                        |----(x,y)
                                    |-------Scanl c y--------|

Example, send input to either scan randomly:

>>> :set -package random
>>> import System.Random (randomIO)
>>> randomly a = randomIO >>= \x -> return $ if x then Left a else Right a
>>> f = Scanl.partitionByM randomly Scanl.length Scanl.length
>>> Stream.toList $ Stream.scanl f (Stream.enumerateFromTo 1 10)
...

Example, send input to the two scans in a proportion of 2:1:

>>> :set -fno-warn-unrecognised-warning-flags
>>> :set -fno-warn-x-partial
>>> :{
proportionately m n = do
 ref <- newIORef $ cycle $ concat [replicate m Left, replicate n Right]
 return $ \a -> do
     r <- readIORef ref
     writeIORef ref $ tail r
     return $ Prelude.head r a
:}
>>> :{
main = do
 g <- proportionately 2 1
 let f = Scanl.partitionByM g Scanl.length Scanl.length
 r <- Stream.toList $ Stream.scanl f (Stream.enumerateFromTo (1 :: Int) 10)
 print r
:}
>>> main
...

This is the consumer side dual of the producer side mergeBy operation.

Terminates as soon as any of the scans terminate.

Pre-release

partitionBy :: forall (m :: Type -> Type) a b c x. Monad m => (a -> Either b c) -> Scanl m b x -> Scanl m c x -> Scanl m a x Source #

Same as partitionByM but with a pure partition function.

Example, count even and odd numbers in a stream:

>>> :{
 let f = Scanl.partitionBy (\n -> if even n then Left n else Right n)
                     (fmap (("Even " ++) . show) Scanl.length)
                     (fmap (("Odd "  ++) . show) Scanl.length)
  in Stream.toList $ Stream.postscanl f (Stream.enumerateFromTo 1 10)
:}
["Odd 1","Even 1","Odd 2","Even 2","Odd 3","Even 3","Odd 4","Even 4","Odd 5","Even 5"]

Pre-release

indexingWith :: forall (m :: Type -> Type) a. Monad m => Int -> (Int -> Int) -> Scanl m a (Maybe (Int, a)) Source #

Pair each element of a scan input with its index, starting from index 0.

indexing :: forall (m :: Type -> Type) a. Monad m => Scanl m a (Maybe (Int, a)) Source #

>>> indexing = Scanl.indexingWith 0 (+ 1)

indexingRev :: forall (m :: Type -> Type) a. Monad m => Int -> Scanl m a (Maybe (Int, a)) Source #

>>> indexingRev n = Scanl.indexingWith n (subtract 1)

defaultSalt :: Int64 Source #

A default salt used in the implementation of rollingHash.

nub :: forall (m :: Type -> Type) a. (Monad m, Ord a) => Scanl m a (Maybe a) Source #

Returns Just for the first occurrence of an element, returns Nothing for any other occurrences.

Example:

>>> stream = Stream.fromList [1::Int,1,2,3,4,4,5,1,5,7]
>>> Stream.toList $ Stream.postscanlMaybe Scanl.nub stream
[1,2,3,4,5,7]

Pre-release

nubInt :: forall (m :: Type -> Type). Monad m => Scanl m Int (Maybe Int) Source #

Like nub but specialized to a stream of Int, for better performance.

Pre-release

countDistinct :: forall (m :: Type -> Type) a. (Monad m, Ord a) => Scanl m a Int Source #

Count non-duplicate elements in the stream.

Definition:

>>> countDistinct = fmap Set.size Scanl.toSet
>>> countDistinct = Scanl.postscanl Scanl.nub $ Scanl.catMaybes $ Scanl.length

The memory used is proportional to the number of distinct elements in the stream, to guard against using too much memory use it as a scan and terminate if the count reaches more than a threshold.

Space: \(\mathcal{O}(n)\)

Pre-release

countDistinctInt :: forall (m :: Type -> Type). Monad m => Scanl m Int Int Source #

Like countDistinct but specialized to a stream of Int, for better performance.

Definition:

>>> countDistinctInt = fmap IntSet.size Scanl.toIntSet
>>> countDistinctInt = Scanl.postscanl Scanl.nubInt $ Scanl.catMaybes $ Scanl.length

Pre-release

toSet :: forall (m :: Type -> Type) a. (Monad m, Ord a) => Scanl m a (Set a) Source #

Scan the input adding it to a set.

Definition:

>>> toSet = Scanl.mkScanl (flip Set.insert) Set.empty

toIntSet :: forall (m :: Type -> Type). Monad m => Scanl m Int IntSet Source #

Scan the input adding it to an int set. For integer inputs this performs better than toSet.

Definition:

>>> toIntSet = Scanl.mkScanl (flip IntSet.insert) IntSet.empty

classify :: forall (m :: Type -> Type) k a b. (MonadIO m, Ord k) => (a -> k) -> Scanl m a b -> Scanl m a (Maybe (k, b)) Source #

Scans the values for each key using the supplied scan.

Once the scan for a key terminates, any future values of the key are ignored.

Equivalent to the following except that the scan is not restarted:

>>> classify f fld = Scanl.demux f (const fld)

classifyIO :: forall (m :: Type -> Type) k a b. (MonadIO m, Ord k) => (a -> k) -> Scanl m a b -> Scanl m a (Maybe (k, b)) Source #

Same as classify except that it uses mutable IORef cells in the Map, providing better performance.

Equivalent to the following except that the scan is not restarted:

>>> classifyIO f fld = Scanl.demuxIO f (const fld)

demux :: (Monad m, Ord k) => (a -> k) -> (k -> m (Maybe (Scanl m a b))) -> Scanl m a (Maybe (k, b)) Source #

demux getKey getScan: In a key value stream, scan values corresponding to each key using a key specific scan. getScan is invoked to generate a key specific scan when a key is encountered for the first time in the stream. If a scan does not exist corresponding to the key then Nothing is returned otherwise the result of the scan is returned.

If a scan terminates, another instance of the scan is started upon receiving an input with that key, getScan is invoked again whenever the key is encountered again.

This can be used to scan a stream, splitting it based on different keys.

Since the scan generator function is monadic we can add scans dynamically. For example, we can maintain a Map of keys to scans in an IORef and lookup the scan from that corresponding to a key. This Map can be changed dynamically, scans for new keys can be added or scans for old keys can be deleted or modified.

Compare with classify, the scan in classify is a static scan.

Pre-release

demuxIO :: (MonadIO m, Ord k) => (a -> k) -> (k -> m (Maybe (Scanl m a b))) -> Scanl m a (Maybe (k, b)) Source #

This is specialized version of demux that uses mutable IO cells as scan accumulators for better performance.

demuxGeneric :: (Monad m, IsMap f, Traversable f) => (a -> Key f) -> (Key f -> m (Maybe (Scanl m a b))) -> Scanl m a (m (f b), Maybe (Key f, b)) Source #

This is the most general of all demux, classify operations.

The first component of the output tuple is a key-value Map of in-progress scans. The scan returns the scan result as the second component of the output tuple.

See demux for documentation.

demuxGenericIO :: (MonadIO m, IsMap f, Traversable f) => (a -> Key f) -> (Key f -> m (Maybe (Scanl m a b))) -> Scanl m a (m (f b), Maybe (Key f, b)) Source #

This is specialized version of demuxGeneric that uses mutable IO cells as scan accumulators for better performance.

Keep in mind that the values in the returned Map may be changed by the ongoing scan if you are using those concurrently in another thread.

classifyGeneric :: (Monad m, IsMap f, Traversable f, Ord (Key f)) => (a -> Key f) -> Scanl m a b -> Scanl m a (m (f b), Maybe (Key f, b)) Source #

classifyGenericIO :: (MonadIO m, IsMap f, Traversable f, Ord (Key f)) => (a -> Key f) -> Scanl m a b -> Scanl m a (m (f b), Maybe (Key f, b)) Source #

Be aware that the values in the intermediate Maps would be mutable.