Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Fix "This Seq has already been iterated" when tapping a feed
@DaTa <== map {$_ + 1} <== @tap <== grep {$_ % 2} <== eager @DaTa; pushed the Seq from grep into @tap and then tried to re-use the same Seq for further processing of the feed in map. Have to .list it to do that. Fixes t/spec/S03-feeds/basic.t
- Loading branch information