aleph

logistark 2018-03-07T10:57:42.000259Z

I mean, that the deferred is completed when all the deferreds inside the list are completed

2018-03-07T16:50:20.000061Z

(apply manifold.deferred/zip (map (fn [arg] function-that-create-deferred arg) list)) http://aleph.io/codox/manifold/manifold.deferred.html#var-zip d/zip' is probably an even better option if you’re sure function-that-create-deferred always returns deferreds and not clojure.core futures or similar

2018-03-07T16:53:56.000505Z

@jimenezsaezjoseantoni

logistark 2018-03-07T16:55:21.000744Z

Thank you!