Skip to main content
Module

x/collections/bench.ts

Collection data structures that are not standard built-in objects in JavaScript. This includes a vector (double-ended queue), binary heap (priority queue), binary search tree, and a red black tree.
Very Popular
Latest
File
import { runBenchmarks } from "./test_deps.ts";
import "./vector_bench.ts";import "./trees/bench.ts";
if (import.meta.main) runBenchmarks();