@@ -371,14 +371,14 @@ public protocol Expression: Sendable {
371
371
///
372
372
/// - Parameter other: The expression to compare against.
373
373
/// - Returns: A `BooleanExpr` that can be used in `where` clauses.
374
- func greaterThanOrEqualTo ( _ other: Expression ) -> BooleanExpression
374
+ func greaterThanOrEqual ( _ other: Expression ) -> BooleanExpression
375
375
376
376
/// Creates a `BooleanExpr` that returns `true` if this expression is
377
377
/// greater than or equal to the given value.
378
378
///
379
379
/// - Parameter other: The value to compare against.
380
380
/// - Returns: A `BooleanExpr` that can be used in `where` clauses.
381
- func greaterThanOrEqualTo ( _ other: Sendable ) -> BooleanExpression
381
+ func greaterThanOrEqual ( _ other: Sendable ) -> BooleanExpression
382
382
383
383
/// Creates a `BooleanExpr` that returns `true` if this expression is less
384
384
/// than the given expression.
@@ -399,14 +399,14 @@ public protocol Expression: Sendable {
399
399
///
400
400
/// - Parameter other: The expression to compare against.
401
401
/// - Returns: A `BooleanExpr` that can be used in `where` clauses.
402
- func lessThanOrEqualTo ( _ other: Expression ) -> BooleanExpression
402
+ func lessThanOrEqual ( _ other: Expression ) -> BooleanExpression
403
403
404
404
/// Creates a `BooleanExpr` that returns `true` if this expression is less
405
405
/// than or equal to the given value.
406
406
///
407
407
/// - Parameter other: The value to compare against.
408
408
/// - Returns: A `BooleanExpr` that can be used in `where` clauses.
409
- func lessThanOrEqualTo ( _ other: Sendable ) -> BooleanExpression
409
+ func lessThanOrEqual ( _ other: Sendable ) -> BooleanExpression
410
410
411
411
/// Creates a `BooleanExpr` that returns `true` if this expression is equal
412
412
/// to the given expression.
0 commit comments