MCPcopy Index your code
hub / github.com/TypeScriptToLua/TypeScriptToLua / MemoryBenchmarkResult

Interface MemoryBenchmarkResult

benchmark/src/benchmark_types.ts:15–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13}
14
15export interface MemoryBenchmarkResult {
16 kind: BenchmarkKind.Memory;
17 categories: Record<MemoryBenchmarkCategory, number>;
18 benchmarkName: string;
19}
20
21export function isMemoryBenchmarkResult(result: BenchmarkResult): result is MemoryBenchmarkResult {
22 return result.kind === BenchmarkKind.Memory;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected