Popularity
2.9
Declining
Activity
0.0
Stable
10
6
1

Monthly Downloads: 37
Programming language: Elixir
License: MIT License
Tags: Build Tools    

etude alternatives and similar packages

Based on the "Build Tools" category.
Alternatively, view etude alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of etude or a related project?

Add another 'Build Tools' Package

README

etude Build Status Hex.pm

futures for elixir/erlang

Example

1..50
|> Enum.map(fn(i) ->
  fn ->
    # some expensive operation
    i
  end
  |> Etude.async()
  |> Etude.retry(1) # retry once if it fails
end)
|> Etude.join(10) # concurrency of 10
|> Etude.map(&Enum.sum/1)
|> Etude.fork!()