withdependencies: Run computations that depend on one or more elements in a stream.

[ control, gpl, library ] [ Propose Tags ]

Run computations that depend on one or more elements in a stream. It lets you model dependencies as an applicative functor.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.2.2, 0.2.2.1, 0.2.3, 0.2.4, 0.2.4.1, 0.2.4.2, 0.2.4.3, 0.2.5, 0.3.0
Dependencies base (>=4.7 && <5), conduit (>=1.2 && <1.4), containers (>=0.5 && <0.7), mtl, profunctors [details]
License GPL-3.0-only
Author Simon Marechal
Maintainer bartavelle@gmail.com
Category Control
Home page https://github.com/bartavelle/withdependencies
Bug tracker https://github.com/bartavelle/withdependencies/issues
Source repo head: git clone https://github.com/bartavelle/withdependencies
Uploaded by SimonMarechal at 2020-02-04T18:19:37Z
Distributions LTSHaskell:0.3.0, NixOS:0.3.0, Stackage:0.3.0
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 5015 total (38 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2020-02-04 [all 1 reports]

Readme for withdependencies-0.3.0

[back to package description]

withdependencies

Build Status

Model computation with dependencies, and evaluate them over streams of elements.

This module was created to handle tree-like computations that require elements from a stream that might arrive in arbitrary order.

The particular use case was a computation requiring several files from a tar archive. The archive would be parsed as a stream of files, and the computation would end as soon as all required files would be traversed.