MCPcopy Create free account
hub / github.com/microsoft/SandDance / selectExactAxis

Function selectExactAxis

docs/app/js/sanddance-app.js:10326–10329  ·  view source on GitHub ↗
(axis, column, i)

Source from the content-addressed store, hash-verified

10324 return searchExpressionGroup;
10325}
10326function selectExactAxis(axis, column, i) {
10327 const result = tickValue(axis, i);
10328 if (result.tick) return selectExact(column, result.value);
10329}
10330function selectBetween(column, lowValue, highValue, lowOperator = ">=", highOperator = "<") {
10331 const expressions = [];
10332 if (lowValue !== undefined) expressions.push({

Callers

nothing calls this directly

Calls 2

tickValueFunction · 0.70
selectExactFunction · 0.70

Tested by

no test coverage detected