opOpAssignImpl

Undocumented in source. Be warned that the author may not have intended to support it.
  1. auto opOpAssignImpl(Vec!(T, size) a, Vec!(U, size) b)
    opOpAssignImpl
    (
    string op
    size_t size
    T
    U
    )
    (
    ref Vec!(T, size) a
    ,
    const Vec!(U, size) b
    )
    if (
    __traits(compiles, mixin ("lvalueOf!T" ~ op ~ "=rvalueOf!U")) &&
    !(
    isIntegral!T &&
    isFloatingPoint!U
    )
    )
  2. auto opOpAssignImpl(Vec!(T, size) a, U[size] b)
  3. auto opOpAssignImpl(Vec!(T, size) a, U b)

Meta