Implements the basic unary operators on a vector. This supports: - Negation -v: Negates all a vector's components. - Incrementation ++v: Increments all a vector's components by 1. - Decrementation --v: Decrements all a vector's components by 1.
A new vector with the operation applied.
See Implementation
Implements the basic unary operators on a vector. This supports: - Negation -v: Negates all a vector's components. - Incrementation ++v: Increments all a vector's components by 1. - Decrementation --v: Decrements all a vector's components by 1.