parallel icon indicating copy to clipboard operation
parallel copied to clipboard

A parallel Enum implementation for Elixir

Results 3 parallel issues
Sort by recently updated
recently updated
newest added

To avoid `warning: variable "self" does not exist and is being expanded to "self()", please use parentheses to remove the ambiguity or change the variable name` and similiar warnings!

If count of items more than :size then only first N_size elements will be processed using provided function

`Parallel.map 1..10, fn i -> i * 2 end, size: 2` expected: `[2, 4, 6, 8, 10, 12, 14, 16, 18, 20]` got: `[18, 20, 16, 14, 12, 10, 8,...