pow abstract method

Vector pow(
  1. num exponent
)

Creates a new Vector composed of elements of this Vector raised to the exponent. Avoid raising a vector to a float power, since it is a slow operation

Implementation

Vector pow(num exponent);