-
-
Save sadache/1466170 to your computer and use it in GitHub Desktop.
Play20 Promise sequence function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// What is a Promise sequence function ? | |
// A function which transform a List[Promise[A]] into a Promise[List[A]] | |
// First naive implementation. It's a synchronous implementation (blocking). | |
def sequencePromises[A](list: List[Promise[A]]): Promise[List[A]] = | |
list.foldLeft(Promise.pure(Promise[List[A]]()))((s,p) => s.flatMap( s => p.map(a => s :+ a))) | |
//should be in the lines of this, didn't try to typecheck it though. |
why nearly?
On Mon, Dec 12, 2011 at 10:51 AM, Renaudeau Gaetan < ***@***.*** > wrote:
Thanks Sadek :)
Yours was nearly OK ;)
https://gist.github.com/1466196 ( my re-fork :) )
---
Reply to this email directly or view it on GitHub:
https://gist.github.com/1466170
##
www.sadekdrobi.com
ʎdoɹʇuǝ
ah ok je vois.
On Mon, Dec 12, 2011 at 10:55 AM, Sadache Aldrobi ***@***.***:
why nearly?
On Mon, Dec 12, 2011 at 10:51 AM, Renaudeau Gaetan <
***@***.***
> wrote:
>
> Thanks Sadek :)
>
> Yours was nearly OK ;)
> https://gist.github.com/1466196 ( my re-fork :) )
> ---
>
> Reply to this email directly or view it on GitHub:
> https://gist.github.com/1466170
##
www.sadekdrobi.com
ʎdoɹʇuǝ
##
www.sadekdrobi.com
ʎdoɹʇuǝ
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks Sadek :)
Yours was nearly OK ;)
https://gist.github.com/1466196 ( my re-fork :) )