+
Addition OperatorAdds two numeric values together (expression)
The Addition Operator adds two numeric values together in an expression. Those values are placed either side of the addition operator.
» 3+2
5
out (3+2)
» 5
Unlike in some other programming languages, the +
operator cannot be used to concatenate strings. This is because shells are historically untyped so you cannot always guarantee that numeric-looking value isn’t a string. To solve this problem, by default Murex assumes anything that looks like a number is a number when performing addition. Thus overloading the +
operator to concatenate strings would lead to a large class of bugs.
» str = "3"
» int = 2
» $str + $int
5
For occasions when type safety is more important than the convenience of silent data casting, you can disable the above behaviour via config
:
» config set proc strict-types true
» $str + $int
Error in `expr` (0,1): cannot Add with string types
> Expression: $str + $int
> : ^
> Character : 1
> Symbol : Scalar
> Value : '$str'
cast
): Alters the data-type of the previous function without altering its outputexpr
): Expressions: mathematical, string comparisons, logical operatorsconfig
): Query or define Murex runtime settings*
Multiplication Operator: Multiplies one numeric value with another (expression)+=
Add With Operator: Adds the right hand value to a variable (expression)-
Subtraction Operator: Subtracts one numeric value from another (expression)/
Division Operator: Divides one numeric value from another (expression)float
(floating point number): Floating point number (primitive)int
: Whole number (primitive)num
(number): Floating point number (primitive)This document was generated from gen/expr/addition-op_doc.yaml.
This site's content is rebuilt automatically from murex's source code after each merge to the master
branch. Downloadable murex binaries are also built with the website.
Last built on Tue Dec 10 22:56:57 UTC 2024 against commit 60f05a260f05a227caf73dd5b3478e3cb3f4bb24e46745b.
Current version is 6.4.1005 (develop) which has been verified against tests cases.