type BenchCmp …
func Correlate(before, after parse.Set) (cmps []BenchCmp, warnings []string) { … }
func (c BenchCmp) Name() string { … }
func (c BenchCmp) String() string { … }
func (c BenchCmp) Measured(flag int) bool { … }
func (c BenchCmp) DeltaNsPerOp() Delta { … }
func (c BenchCmp) DeltaMBPerS() Delta { … }
func (c BenchCmp) DeltaAllocedBytesPerOp() Delta { … }
func (c BenchCmp) DeltaAllocsPerOp() Delta { … }
type Delta …
func (d Delta) mag() float64 { … }
func (d Delta) Changed() bool { … }
func (d Delta) Float64() float64 { … }
func (d Delta) Percent() string { … }
func (d Delta) Multiple() string { … }
func (d Delta) String() string { … }
type ByParseOrder …
func (x ByParseOrder) Len() int { … }
func (x ByParseOrder) Swap(i, j int) { … }
func (x ByParseOrder) Less(i, j int) bool { … }
func lessByDelta(i, j BenchCmp, calcDelta func(BenchCmp) Delta) bool { … }
type ByDeltaNsPerOp …
func (x ByDeltaNsPerOp) Len() int { … }
func (x ByDeltaNsPerOp) Swap(i, j int) { … }
func (x ByDeltaNsPerOp) Less(i, j int) bool { … }
type ByDeltaMBPerS …
func (x ByDeltaMBPerS) Len() int { … }
func (x ByDeltaMBPerS) Swap(i, j int) { … }
func (x ByDeltaMBPerS) Less(i, j int) bool { … }
type ByDeltaAllocedBytesPerOp …
func (x ByDeltaAllocedBytesPerOp) Len() int { … }
func (x ByDeltaAllocedBytesPerOp) Swap(i, j int) { … }
func (x ByDeltaAllocedBytesPerOp) Less(i, j int) bool { … }
type ByDeltaAllocsPerOp …
func (x ByDeltaAllocsPerOp) Len() int { … }
func (x ByDeltaAllocsPerOp) Swap(i, j int) { … }
func (x ByDeltaAllocsPerOp) Less(i, j int) bool { … }