MCPcopy Create free account
hub / github.com/TanStack/db / constructor

Method constructor

packages/db/src/query/ir.ts:153–158  ·  view source on GitHub ↗
(
    public name: string, // such as eq, gt, lt, upper, lower, etc.
    public args: Array<BasicExpression>,
  )

Source from the content-addressed store, hash-verified

151export class Func<T = any> extends BaseExpression<T> {
152 public type = `func` as const
153 constructor(
154 public name: string, // such as eq, gt, lt, upper, lower, etc.
155 public args: Array<BasicExpression>,
156 ) {
157 super()
158 }
159}
160
161// This is the basic expression type that is used in the majority of expression

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected