Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/MaterializeInc/materialize
/ modulo
Method
modulo
src/sql-parser/src/ast/defs/expr.rs:1030–1032 ·
view source on GitHub ↗
(self, right: Expr<T>)
Source
from the content-addressed store, hash-verified
1028
}
1029
1030
pub fn modulo(self, right: Expr<T>) -> Expr<T> {
1031
self.binop(Op::bare(
"%"
), right)
1032
}
1033
1034
pub fn divide(self, right: Expr<T>) -> Expr<T> {
1035
self.binop(Op::bare(
"/"
), right)
Callers
1
rewrite_function
Method · 0.80
Calls
1
binop
Method · 0.80
Tested by
no test coverage detected