Vector.opBinary

Any binary operations execs per element

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

See Also

Meta