Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

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

A high-performance basic router works anywhere.
Latest
interface BenchmarkResult
import { type BenchmarkResult } from "https://deno.land/x/router@v2.0.1/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.