time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

SqDict.d.ts (1068B)


      1 import { ValueMap } from "../../value/index.js";
      2 import { SqValueContext } from "../SqValueContext.js";
      3 import { SqDictValue, SqValue } from "./index.js";
      4 export declare class SqDict {
      5     private _value;
      6     context?: SqValueContext | undefined;
      7     constructor(_value: ValueMap, context?: SqValueContext | undefined);
      8     entries(): (readonly [string, import("./index.js").SqArrayValue | import("./index.js").SqBoolValue | import("./index.js").SqDateValue | import("./index.js").SqDistributionValue | import("./index.js").SqLambdaValue | import("./index.js").SqNumberValue | SqDictValue | import("./index.js").SqStringValue | import("./index.js").SqPlotValue | import("./index.js").SqTableChartValue | import("./index.js").SqCalculatorValue | import("./index.js").SqScaleValue | import("./index.js").SqTimeDurationValue | import("./index.js").SqVoidValue | import("./index.js").SqDomainValue | import("./index.js").SqInputValue])[];
      9     get(key: string): SqValue | undefined;
     10     toString(): string;
     11     asValue(): SqDictValue;
     12 }
     13 //# sourceMappingURL=SqDict.d.ts.map