github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/gen/expr/subtraction_op_doc.yaml (about) 1 - DocumentID: subtraction 2 Title: >- 3 `-` Subtraction Operator 4 CategoryID: parser 5 Summary: >- 6 Subtracts one numeric value from another (expression) 7 Description: |- 8 The Subtraction Operator takes the right hand number from the left hand number 9 in an expression. 10 Examples: |- 11 #### Expression 12 13 ``` 14 » 3-2 15 1 16 ``` 17 18 #### Statement 19 20 ``` 21 out (3-2) 22 » 1 23 ``` 24 Detail: |- 25 {{ include "gen/includes/expr-strict-types.inc.md" }} 26 Related: 27 - expr 28 - subtract-by 29 - addition 30 - multiplication 31 - division 32 - int 33 - float 34 - num 35 - config 36 - cast