Vector.opAssign

Assign operation for vector or array.

  1. Vector opAssign(AnotherType value)
    struct Vector(T, uint S)
    opAssign
    (
    AnotherType
    )
    (
    const AnotherType value
    )
    if (
    isVector!(AnotherType) ||
    isArray!(AnotherType)
    )
    if (
    __traits(isArithmetic, T)
    )
  2. Vector opAssign(AnotherType value)

Parameters

value AnotherType

assigned value

Return Value

Type: Vector

this vector after assigned.

Meta