Skip to content

Commit 94ea094

Browse files
committed
fixup
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 58e0e2d commit 94ea094

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

vortex-array/src/expr/exprs/binary.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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
///

vortex-array/src/expr/transform/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SPDX-License-Identifier: Apache-2.0
22
// SPDX-FileCopyrightText: Copyright the Vortex contributors
33

4-
//! A collection of transformations that can be applied to a [`crate::Expression`].
4+
//! A collection of transformations that can be applied to a [`crate::expr::Expression`].
55
pub mod annotations;
66
pub mod immediate_access;
77
pub(crate) mod match_between;

vortex-array/src/expr/vtable.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ pub trait VTable: 'static + Sized + Send + Sync {
7575
/// Evaluate the expression in the given scope.
7676
fn evaluate(&self, expr: &ExpressionView<Self>, scope: &ArrayRef) -> VortexResult<ArrayRef>;
7777

78-
/// See [`crate::Expression::stat_falsification`].
78+
/// See [`crate::expr::Expression::stat_falsification`].
7979
fn stat_falsification(
8080
&self,
8181
_expr: &ExpressionView<Self>,
@@ -84,7 +84,7 @@ pub trait VTable: 'static + Sized + Send + Sync {
8484
None
8585
}
8686

87-
/// See [`crate::Expression::stat_max`].
87+
/// See [`crate::expr::Expression::stat_max`].
8888
fn stat_max(
8989
&self,
9090
_expr: &ExpressionView<Self>,
@@ -93,7 +93,7 @@ pub trait VTable: 'static + Sized + Send + Sync {
9393
None
9494
}
9595

96-
/// See [`crate::Expression::stat_min`].
96+
/// See [`crate::expr::Expression::stat_min`].
9797
fn stat_min(
9898
&self,
9999
_expr: &ExpressionView<Self>,
@@ -102,7 +102,7 @@ pub trait VTable: 'static + Sized + Send + Sync {
102102
None
103103
}
104104

105-
/// See [`crate::Expression::stat_nan_count`].
105+
/// See [`crate::expr::Expression::stat_nan_count`].
106106
fn stat_nan_count(
107107
&self,
108108
_expr: &ExpressionView<Self>,
@@ -111,7 +111,7 @@ pub trait VTable: 'static + Sized + Send + Sync {
111111
None
112112
}
113113

114-
/// See [`crate::Expression::stat_field_path`].
114+
/// See [`crate::expr::Expression::stat_field_path`].
115115
fn stat_field_path(&self, _expr: &ExpressionView<Self>) -> Option<FieldPath> {
116116
None
117117
}

0 commit comments

Comments
 (0)