streamly-0.9.0: Streaming, dataflow programming and declarative concurrency
Copyright(c) 2020 Composewell Technologies
LicenseBSD-3-Clause
Maintainerstreamly@composewell.com
Stabilityexperimental
PortabilityGHC
Safe HaskellSafe-Inferred
LanguageHaskell2010

Streamly.Internal.Data.Cont

Description

Continuation style utilities.

Synopsis
  • contListMap :: (a -> (b -> r) -> r) -> ([b] -> (c -> r) -> r) -> [a] -> (c -> r) -> r

Documentation

contListMap :: (a -> (b -> r) -> r) -> ([b] -> (c -> r) -> r) -> [a] -> (c -> r) -> r Source #

Given a continuation based transformation from a to b and a continuation based transformation from [b] to c, make continuation based transformation from [a] to c.

Pre-release