Vector.opUnary

Unary operation for "+". This function is identity.

  1. Vector opUnary()
    struct Vector(T, uint S)
    const
    opUnary
    (
    string op
    )
    ()
    if (
    op == "+"
    )
    if (
    __traits(isArithmetic, T)
    )
  2. Vector opUnary()

Return Value

Type: Vector

a vector equals to this vector.

Meta