MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / call_binary

Method call_binary

src/expr/src/scalar.rs:200–206  ·  view source on GitHub ↗
(self, other: Self, func: B)

Source from the content-addressed store, hash-verified

198 }
199
200 pub fn call_binary<B: Into<BinaryFunc>>(self, other: Self, func: B) -> Self {
201 MirScalarExpr::CallBinary {
202 func: func.into(),
203 expr1: Box::new(self),
204 expr2: Box::new(other),
205 }
206 }
207
208 /// Call function `func` on `exprs`.
209 pub fn call_variadic<V: Into<VariadicFunc>>(func: V, exprs: Vec<Self>) -> Self {

Calls

no outgoing calls

Tested by 11

test_jsonbFunction · 0.36
test_inequalityFunction · 0.36
test_traceFunction · 0.36
test_64_arm_chainFunction · 0.36
test_string_literalsFunction · 0.36