MCPcopy Index your code
hub / github.com/TanStack/db / compileSingleRowExpression

Function compileSingleRowExpression

packages/db/src/query/compiler/evaluators.ts:100–105  ·  view source on GitHub ↗
(
  expr: BasicExpression,
)

Source from the content-addressed store, hash-verified

98 * Compiles a single-row expression into an optimized evaluator function.
99 */
100export function compileSingleRowExpression(
101 expr: BasicExpression,
102): CompiledSingleRowExpression {
103 const compiledFn = compileExpressionInternal(expr, true)
104 return compiledFn as CompiledSingleRowExpression
105}
106
107/**
108 * Internal unified expression compiler that handles both namespaced and single-row evaluation

Calls 1

Tested by

no test coverage detected