- Subtraction Operator

Subtracts one numeric value from another (expression)

Description

The Subtraction Operator takes the right hand number from the left hand number in an expression.

Examples

Expression

» 3-2
1

Statement

out (3-2)
» 1

Detail

Type Safety

Because shells are historically untyped, you cannot always guarantee that a 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.

» str = "2"
» int = 3
» $str + $int
1

For occasions when type safety is more important than the convenience of silent data casting, you can disable the above behaviour via config (read more):

» 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'

See Also


This document was generated from gen/expr/subtraction-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 Sat Nov 23 00:50:15 UTC 2024 against commit 69c17da69c17da3bd9db98ca508f6a03a402f074ee24cec.

Current version is 6.4.0375 (develop) which has been verified against tests cases.