MCPcopy Create free account
hub / github.com/apache/echarts / constructor

Method constructor

src/data/helper/dataValueHelper.ts:197–202  ·  view source on GitHub ↗
(isEq: boolean, rval: unknown)

Source from the content-addressed store, hash-verified

195 private _rvalTypeof: string;
196 private _rvalFloat: number;
197 constructor(isEq: boolean, rval: unknown) {
198 this._rval = rval;
199 this._isEQ = isEq;
200 this._rvalTypeof = typeof rval;
201 this._rvalFloat = numericToNumber(rval);
202 }
203 // Performance sensitive.
204 evaluate(lval: unknown): boolean {
205 let eqResult = lval === this._rval;

Callers

nothing calls this directly

Calls 1

numericToNumberFunction · 0.90

Tested by

no test coverage detected