From ded2838e22c6be6d47434bc80232f17cfd96e111 Mon Sep 17 00:00:00 2001 From: Steve Krouse Date: Tue, 29 Jan 2019 12:22:07 +0000 Subject: [PATCH] explain performStream variants via marble diagram --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e47d02a..657667a 100644 --- a/README.md +++ b/README.md @@ -674,6 +674,8 @@ point in time. #### `performStream(s: Stream>): Now>` +![](https://user-images.githubusercontent.com/2288939/50018272-9e586200-ffc6-11e8-8ea9-e13abc607a0b.png) + Takes a stream of `IO` actions and return a stream in a now computation. When run the now computation executes each `IO` action and delivers their result into the created stream.