sub method

Vector sub(
  1. Vector v, {
  2. Vector? w,
})

Implementation

Vector sub(Vector v, {Vector? w}){
  throw('Not implimented in Vector type yet');
}