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