concurrent v0.1.0 Concurrent View Source
Enum with concurrency by using Elixir Task
Link to this section Summary
Functions
Hello world
Link to this section Functions
Link to this function
map(enum, fun, options \\ [timeout: 5000]) View Source
Hello world.
Examples
iex> Concurrent.map([1, 2, 3], & &1 * &1)
[1, 4, 9]