UNPKG

enumset32-benchmarks

Version:

Benchmarks for enumset32 vs other set implementations

15 lines (14 loc) 486 B
/*! * Copyright (c) 2019 Justin Johansson */ export class BenchResult { constructor(testName, numSampleRuns, opsPerSecond, meanPeriod, absMarginOfError, relMarginOfError, summary) { this.testName = testName; this.numSampleRuns = numSampleRuns; this.opsPerSecond = opsPerSecond; this.meanPeriod = meanPeriod; this.absMarginOfError = absMarginOfError; this.relMarginOfError = relMarginOfError; this.summary = summary; } }