Vector.opBinaryRight
- Vector opBinaryRight(T scalar)
- auto opBinaryRight(U scalar)
- Vector!(CommonType!(U, T), max(N, M)) opBinaryRight(U[M] other)
struct Vector(T, uint N)
pure const
Vector!(
CommonType!(
U,
T),
max(
N,
M))
opBinaryRight
(const auto ref U[M] other ) if (
!
is(
CommonType!(
U,
T) ==
void) &&
op != "~"
)
- Vector!(T, N + 1) opBinaryRight(T scalar)
- Vector!(T, N + M) opBinaryRight(T[M] other)
bettercmath vector Vector
aliasesconstructorsfunctionsmanifest constantsvariables
Returns a new vector with the results of applying operator against elements of other. If operands dimensions are unequal, copies the values from greater dimension vector.