Vector.opBinary

Processes vector multiplication and division with number.

  1. Self opBinary(Vector!(Size, SumType, SumAccessors, Orientation) summand)
  2. Self opBinary(Number num)
    struct Vector(size_t Size, Type = float, string Accessors = "", string Orientation = "horizontal")
    @trusted pure nothrow
    Self
    opBinary
    (
    string op
    Number
    )
    (
    in Number num
    )
    if (
    (
    op == "*" ||
    op == "/"
    )
    &&
    isNumeric!Number
    )
    if (
    Size > 0
    )
  3. auto opBinary(Factor factor)

Meta