Vector.opBinary

Any binary operations execs per element

  1. auto opBinary(Vector!(K, E, oas) b)
    struct Vector(size_t N, T, alias string AS = "")
    pure const
    opBinary
    (
    string op
    size_t K
    E
    alias string oas
    )
    (
    in Vector!(K, E, oas) b
    )
    if (
    isValidOp!(op, T, E) &&
    (
    K == N ||
    K == 0
    ||
    N == 0
    )
    )
    if (
    isCompatibleArrayAccessStrings(N, AS, VVASES, VVASVS) ||
    AS.length == 0
    )
  2. auto opBinary(E b)

See Also

Meta