package
0.0.0-20201102054017-282493799a89
Repository: https://github.com/golangltd/leafltd.git
Documentation: pkg.go.dev

# Functions

Correlate correlates benchmarks from two BenchSets.
Parse extracts a BenchSet from testing.B output.
ParseLine extracts a Bench from a single line of testing.B output.

# Constants

Flags used by Bench.Measured to indicate which measurements a Bench contains.
Flags used by Bench.Measured to indicate which measurements a Bench contains.
Flags used by Bench.Measured to indicate which measurements a Bench contains.
Flags used by Bench.Measured to indicate which measurements a Bench contains.

# Structs

Bench is one run of a single benchmark.
BenchCmp is a pair of benchmarks.
Delta is the before and after value for a benchmark measurement.

# Type aliases

BenchSet is a collection of benchmarks from one testing.B run, keyed by name to facilitate comparison.
ByDeltaAllocedBytesPerOp sorts BenchCmps lexicographically by change in B/op, descending, then by benchmark name.
ByDeltaAllocsPerOp sorts BenchCmps lexicographically by change in allocs/op, descending, then by benchmark name.
ByDeltaMBPerS sorts BenchCmps lexicographically by change in MB/s, descending, then by benchmark name.
ByDeltaNsPerOp sorts BenchCmps lexicographically by change in ns/op, descending, then by benchmark name.
ByParseOrder sorts BenchCmps to match the order in which the Before benchmarks were presented to Parse.