-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parallel Execution #203
Comments
Hmm... I guess the syntax would be more like:
In this case I used |
I was considering something like this a few years ago as part of the story for parallel & concurrent programming, as e.g.
My general plan is not to be too opinionated about concurrency strategies, but to include a wide variety of concurrency & parallelism features, like GHC does, so programmers can select the features that are best suited to the problem at hand. I’ll write up some more detailed thoughts in another issue. |
This, I think. Watched a video the other day of Ryan Dahl, creator of Node.js, and he regrets not using promises. And it seems to me to fit best with concatinative programming. |
Just wanted to suggest this idea. It would useful in reducing the need for swapping and local variables.
Here I used
||
to mean parallel execution, meaningsum
andsize
are applied to the list on top of the stack independently, and thus could be executed in parallel.The text was updated successfully, but these errors were encountered: