@@ -465,84 +465,96 @@ public protocol Expression: Sendable {
465465 /// than the given expression.
466466 ///
467467 /// - Parameter other: The expression to compare against.
468- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
468+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
469+ /// boolean expressions.
469470 func greaterThan( _ other: Expression ) -> BooleanExpression
470471
471472 /// Creates a `BooleanExpression` that returns `true` if this expression is greater
472473 /// than the given value.
473474 ///
474475 /// - Parameter other: The value to compare against.
475- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
476+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
477+ /// boolean expressions.
476478 func greaterThan( _ other: Sendable ) -> BooleanExpression
477479
478480 /// Creates a `BooleanExpression` that returns `true` if this expression is
479481 /// greater than or equal to the given expression.
480482 ///
481483 /// - Parameter other: The expression to compare against.
482- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
484+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
485+ /// boolean expressions.
483486 func greaterThanOrEqual( _ other: Expression ) -> BooleanExpression
484487
485488 /// Creates a `BooleanExpression` that returns `true` if this expression is
486489 /// greater than or equal to the given value.
487490 ///
488491 /// - Parameter other: The value to compare against.
489- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
492+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
493+ /// boolean expressions.
490494 func greaterThanOrEqual( _ other: Sendable ) -> BooleanExpression
491495
492496 /// Creates a `BooleanExpression` that returns `true` if this expression is less
493497 /// than the given expression.
494498 ///
495499 /// - Parameter other: The expression to compare against.
496- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
500+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
501+ /// boolean expressions.
497502 func lessThan( _ other: Expression ) -> BooleanExpression
498503
499504 /// Creates a `BooleanExpression` that returns `true` if this expression is less
500505 /// than the given value.
501506 ///
502507 /// - Parameter other: The value to compare against.
503- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
508+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
509+ /// boolean expressions.
504510 func lessThan( _ other: Sendable ) -> BooleanExpression
505511
506512 /// Creates a `BooleanExpression` that returns `true` if this expression is less
507513 /// than or equal to the given expression.
508514 ///
509515 /// - Parameter other: The expression to compare against.
510- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
516+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
517+ /// boolean expressions.
511518 func lessThanOrEqual( _ other: Expression ) -> BooleanExpression
512519
513520 /// Creates a `BooleanExpression` that returns `true` if this expression is less
514521 /// than or equal to the given value.
515522 ///
516523 /// - Parameter other: The value to compare against.
517- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
524+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
525+ /// boolean expressions.
518526 func lessThanOrEqual( _ other: Sendable ) -> BooleanExpression
519527
520528 /// Creates a `BooleanExpression` that returns `true` if this expression is equal
521529 /// to the given expression.
522530 ///
523531 /// - Parameter other: The expression to compare against.
524- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
532+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
533+ /// boolean expressions.
525534 func equal( _ other: Expression ) -> BooleanExpression
526535
527536 /// Creates a `BooleanExpression` that returns `true` if this expression is equal
528537 /// to the given value.
529538 ///
530539 /// - Parameter other: The value to compare against.
531- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
540+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
541+ /// boolean expressions.
532542 func equal( _ other: Sendable ) -> BooleanExpression
533543
534544 /// Creates a `BooleanExpression` that returns `true` if this expression is not
535545 /// equal to the given expression.
536546 ///
537547 /// - Parameter other: The expression to compare against.
538- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
548+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
549+ /// boolean expressions.
539550 func notEqual( _ other: Expression ) -> BooleanExpression
540551
541552 /// Creates a `BooleanExpression` that returns `true` if this expression is not
542553 /// equal to the given value.
543554 ///
544555 /// - Parameter other: The value to compare against.
545- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
556+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
557+ /// boolean expressions.
546558 func notEqual( _ other: Sendable ) -> BooleanExpression
547559
548560 /// Creates an expression that checks if this expression is equal to any of the provided
@@ -554,7 +566,8 @@ public protocol Expression: Sendable {
554566 /// ```
555567 ///
556568 /// - Parameter others: An array of at least one `Expression` value to check against.
557- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
569+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
570+ /// boolean expressions.
558571 func equalAny( _ others: [ Expression ] ) -> BooleanExpression
559572
560573 /// Creates an expression that checks if this expression is equal to any of the provided literal
@@ -566,7 +579,8 @@ public protocol Expression: Sendable {
566579 /// ```
567580 ///
568581 /// - Parameter others: An array of at least one `Sendable` literal value to check against.
569- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
582+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
583+ /// boolean expressions.
570584 func equalAny( _ others: [ Sendable ] ) -> BooleanExpression
571585
572586 /// Creates an expression that checks if this expression is equal to any of the provided
@@ -578,7 +592,8 @@ public protocol Expression: Sendable {
578592 /// ```
579593 ///
580594 /// - Parameter arrayExpression: An `Expression` elements evaluated to be array.
581- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
595+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
596+ /// boolean expressions.
582597 func equalAny( _ arrayExpression: Expression ) -> BooleanExpression
583598
584599 /// Creates an expression that checks if this expression is not equal to any of the provided
@@ -590,7 +605,8 @@ public protocol Expression: Sendable {
590605 /// ```
591606 ///
592607 /// - Parameter others: An array of at least one `Expression` value to check against.
593- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
608+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
609+ /// boolean expressions.
594610 func notEqualAny( _ others: [ Expression ] ) -> BooleanExpression
595611
596612 /// Creates an expression that checks if this expression is not equal to any of the provided
@@ -602,7 +618,8 @@ public protocol Expression: Sendable {
602618 /// ```
603619 ///
604620 /// - Parameter others: An array of at least one `Sendable` literal value to check against.
605- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
621+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
622+ /// boolean expressions.
606623 func notEqualAny( _ others: [ Sendable ] ) -> BooleanExpression
607624
608625 /// Creates an expression that checks if this expression is equal to any of the provided
@@ -614,7 +631,8 @@ public protocol Expression: Sendable {
614631 /// ```
615632 ///
616633 /// - Parameter arrayExpression: An `Expression` elements evaluated to be array.
617- /// - Returns: A `BooleanExpression` that can be used in `where` clauses.
634+ /// - Returns: A `BooleanExpression` that can be used in a where stage, together with other
635+ /// boolean expressions.
618636 func notEqualAny( _ arrayExpression: Expression ) -> BooleanExpression
619637
620638 /// Creates an expression that checks if this expression evaluates to "NaN" (Not a Number).
0 commit comments