Skip to main content
Module

x/abc/vendor/https/deno.land/std/testing/bench.ts>BenchmarkResult

A better Deno framework to create web application.
Latest
interface BenchmarkResult
import { type BenchmarkResult } from "https://deno.land/x/abc@v1.3.3/vendor/https/deno.land/std/testing/bench.ts";

Defines the result of a single benchmark

Properties

name: string

The name of the benchmark

totalMs: number

The total time it took to run a given bechmark

runsCount: number

Times the benchmark was run in succession.

measuredRunsAvgMs: number

The average time of running the benchmark in milliseconds.

measuredRunsMs: number[]

The individual measurements in milliseconds it took to run the benchmark.