elm-explorations / benchmark / Benchmark.Reporting

Reporting for Benchmarks


type Report
    = Single String Benchmark.Status.Status
    | Series String (List ( String, Benchmark.Status.Status ))
    | Group String (List Report)

Reports are the public version of Benchmarks.

Each tag of Report has a name and some other information about the structure of a benchmarking run.

fromBenchmark : Benchmark -> Report

Get a report from a Benchmark.