elixir-benchmark icon indicating copy to clipboard operation
elixir-benchmark copied to clipboard

Elixir benchmark utilities.

Ruby inspired Benchmark module

Dump module to benchmark things.

Example

require Benchmark

Benchmark.times 10000, do: 2 * 4 # => [ min: 1 microseconds,
                                 #      max: 669 microseconds,
                                 #      median: 2 microseconds,
                                 #      average: 3.5644 microseconds ]