@@ -798,7 +798,8 @@ abstract class Expr internal constructor() {
798
798
* @param second Numeric expression to add.
799
799
* @return A new [Expr] representing the addition operation.
800
800
*/
801
- @JvmStatic fun add (first : Expr , second : Expr ): Expr = FunctionExpr (" add" , evaluateAdd, first, second)
801
+ @JvmStatic
802
+ fun add (first : Expr , second : Expr ): Expr = FunctionExpr (" add" , evaluateAdd, first, second)
802
803
803
804
/* *
804
805
* Creates an expression that adds numeric expressions with a constant.
@@ -807,7 +808,8 @@ abstract class Expr internal constructor() {
807
808
* @param second Constant to add.
808
809
* @return A new [Expr] representing the addition operation.
809
810
*/
810
- @JvmStatic fun add (first : Expr , second : Number ): Expr = FunctionExpr (" add" , evaluateAdd, first, second)
811
+ @JvmStatic
812
+ fun add (first : Expr , second : Number ): Expr = FunctionExpr (" add" , evaluateAdd, first, second)
811
813
812
814
/* *
813
815
* Creates an expression that adds a numeric field with a numeric expression.
@@ -883,7 +885,8 @@ abstract class Expr internal constructor() {
883
885
* @return A new [Expr] representing the multiplication operation.
884
886
*/
885
887
@JvmStatic
886
- fun multiply (first : Expr , second : Expr ): Expr = FunctionExpr (" multiply" , evaluateMultiply, first, second)
888
+ fun multiply (first : Expr , second : Expr ): Expr =
889
+ FunctionExpr (" multiply" , evaluateMultiply, first, second)
887
890
888
891
/* *
889
892
* Creates an expression that multiplies numeric expressions with a constant.
@@ -893,7 +896,8 @@ abstract class Expr internal constructor() {
893
896
* @return A new [Expr] representing the multiplication operation.
894
897
*/
895
898
@JvmStatic
896
- fun multiply (first : Expr , second : Number ): Expr = FunctionExpr (" multiply" , evaluateMultiply, first, second)
899
+ fun multiply (first : Expr , second : Number ): Expr =
900
+ FunctionExpr (" multiply" , evaluateMultiply, first, second)
897
901
898
902
/* *
899
903
* Creates an expression that multiplies a numeric field with a numeric expression.
0 commit comments