github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/gen/expr/division_op_doc.yaml (about)

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