div

Divides the first operand by the second operand and returns their quotient. Division by zero sets a flag and returns infinity. The result may be rounded and context flags may be set. Implements the 'divide' function in the specification. (p. 27-29)

  1. D div(D x, D y, Context context)
    D
    div
    (
    D
    )
    (
    in D x
    ,
    in D y
    ,
    Context context = D.context
    )
  2. D div(D x, U n, Context context)
  3. D div(D x, U z, Context context)

Meta