Vector.opBinary

Undocumented in source. Be warned that the author may not have intended to support it.
  1. Vector opBinary(Vector rhs)
    struct Vector(T, uint N)
    opBinary
    (
    string op
    )
    if (
    rhs._N == N &&
    (
    op == "+" ||
    op == "-"
    )
    )
    if (
    N > 0
    )
  2. Vector opBinary(scalar rhs)

Meta