MCPcopy Create free account
hub / github.com/clockworklabs/SpacetimeDB / gt

Method gt

crates/query-builder/src/table.rs:71–73  ·  view source on GitHub ↗
(self, rhs: R)

Source from the content-addressed store, hash-verified

69 BoolExpr::Ne(self.into(), rhs.to_expr())
70 }
71 pub fn gt<R: RHS<T, V>>(self, rhs: R) -> BoolExpr<T> {
72 BoolExpr::Gt(self.into(), rhs.to_expr())
73 }
74 pub fn lt<R: RHS<T, V>>(self, rhs: R) -> BoolExpr<T> {
75 BoolExpr::Lt(self.into(), rhs.to_expr())
76 }

Calls 1

to_exprMethod · 0.80