Packages

This library offers implementation of SOAP1.1 and SOAP1.2 client. It downloads WSDL ang generates proxy module.

Current section

Files

Jump to
soapex lib benchmark.ex
Raw

lib/benchmark.ex

defmodule Benchmark do
def measure(function) do
function
|> :timer.tc()
|> elem(0)
|> Kernel./(1_000_000)
end
end