packages feed

dynamic-pipeline 0.3.1.2 → 0.3.1.3

raw patch · 2 files changed

+9/−1 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

dynamic-pipeline.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           dynamic-pipeline-version:        0.3.1.2+version:        0.3.1.3 synopsis:       Library Type Safe implementation of Dynamic Pipeline Paradigm (DPP). description:    @dynamic-pipeline@ is a __/Type Safe/__ Dynamic and Parallel Streaming Library, which is an implementation of __Dynamic Pipeline Paradigm (DPP)__                  proposed in this paper [DPP](https://biblioteca.sistedes.es/articulo/the-dynamic-pipeline-paradigm/).
src/DynamicPipeline.hs view
@@ -57,6 +57,14 @@ -- program = 'runDP' $ 'mkDP' @DPExample source\' generator\' sink\' -- @ --+-- Some visual representation of /DP/ and how this is happening under the hood+--+-- @+-- 'Source' >> 'Filter'_1(runStateT $ actor_1 >> actor_2 >> ... actor_n) ..... >> 'Generator'  >> 'Sink'+--    |            |                                                                  |              |   +--  Async        Async                                                              Async          Async      +-- @+-- module DynamicPipeline      ( -- * DP Flow Grammar #grammar#       -- $grammar