@@ -253,7 +253,7 @@ impl ExpressionView<'_, Binary> {
253253 }
254254}
255255
256- /// Create a new [`Binary`] using the [`Eq`](crate::Operator::Eq) operator.
256+ /// Create a new [`Binary`] using the [`Eq`](crate::expr::exprs::operators:: Operator::Eq) operator.
257257///
258258/// ## Example usage
259259///
@@ -277,7 +277,7 @@ pub fn eq(lhs: Expression, rhs: Expression) -> Expression {
277277 . vortex_expect ( "Failed to create Eq binary expression" )
278278}
279279
280- /// Create a new [`Binary`] using the [`NotEq`](crate::Operator::NotEq) operator.
280+ /// Create a new [`Binary`] using the [`NotEq`](crate::expr::exprs::operators:: Operator::NotEq) operator.
281281///
282282/// ## Example usage
283283///
@@ -301,7 +301,7 @@ pub fn not_eq(lhs: Expression, rhs: Expression) -> Expression {
301301 . vortex_expect ( "Failed to create NotEq binary expression" )
302302}
303303
304- /// Create a new [`Binary`] using the [`Gte`](crate::Operator::Gte) operator.
304+ /// Create a new [`Binary`] using the [`Gte`](crate::expr::exprs::operators:: Operator::Gte) operator.
305305///
306306/// ## Example usage
307307///
@@ -325,7 +325,7 @@ pub fn gt_eq(lhs: Expression, rhs: Expression) -> Expression {
325325 . vortex_expect ( "Failed to create Gte binary expression" )
326326}
327327
328- /// Create a new [`Binary`] using the [`Gt`](crate::Operator::Gt) operator.
328+ /// Create a new [`Binary`] using the [`Gt`](crate::expr::exprs::operators:: Operator::Gt) operator.
329329///
330330/// ## Example usage
331331///
@@ -349,7 +349,7 @@ pub fn gt(lhs: Expression, rhs: Expression) -> Expression {
349349 . vortex_expect ( "Failed to create Gt binary expression" )
350350}
351351
352- /// Create a new [`Binary`] using the [`Lte`](crate::Operator::Lte) operator.
352+ /// Create a new [`Binary`] using the [`Lte`](crate::expr::exprs::operators:: Operator::Lte) operator.
353353///
354354/// ## Example usage
355355///
@@ -373,7 +373,7 @@ pub fn lt_eq(lhs: Expression, rhs: Expression) -> Expression {
373373 . vortex_expect ( "Failed to create Lte binary expression" )
374374}
375375
376- /// Create a new [`Binary`] using the [`Lt`](crate::Operator::Lt) operator.
376+ /// Create a new [`Binary`] using the [`Lt`](crate::expr::exprs::operators:: Operator::Lt) operator.
377377///
378378/// ## Example usage
379379///
@@ -397,7 +397,7 @@ pub fn lt(lhs: Expression, rhs: Expression) -> Expression {
397397 . vortex_expect ( "Failed to create Lt binary expression" )
398398}
399399
400- /// Create a new [`Binary`] using the [`Or`](crate::Operator::Or) operator.
400+ /// Create a new [`Binary`] using the [`Or`](crate::expr::exprs::operators:: Operator::Or) operator.
401401///
402402/// ## Example usage
403403///
@@ -431,7 +431,7 @@ where
431431 Some ( iter. rfold ( first, |acc, elem| or ( elem, acc) ) )
432432}
433433
434- /// Create a new [`Binary`] using the [`And`](crate::Operator::And) operator.
434+ /// Create a new [`Binary`] using the [`And`](crate::expr::exprs::operators:: Operator::And) operator.
435435///
436436/// ## Example usage
437437///
@@ -475,7 +475,7 @@ where
475475 iter. reduce ( and)
476476}
477477
478- /// Create a new [`Binary`] using the [`Add`](crate::Operator::Add) operator.
478+ /// Create a new [`Binary`] using the [`Add`](crate::expr::exprs::operators:: Operator::Add) operator.
479479///
480480/// ## Example usage
481481///
0 commit comments