XYZ.opBinary

Binary operators.

  1. typeof(this) opBinary(typeof(this) rh)
  2. typeof(this) opBinary(S rh)
    struct XYZ(F = float)
    @safe pure nothrow @nogc const
    typeof(this)
    opBinary
    (
    string op
    S
    )
    (
    S rh
    )
    if (
    (
    op == "*" ||
    op == "/"
    ||
    op == "%"
    ||
    op == "^^"
    )
    )
    if (
    isFloatingPoint!F
    )

Meta