splat method

void splat (double arg)

Splat arg into all lanes of the vector.

Implementation

void splat(double arg) {
  _v2storage[0] = arg;
  _v2storage[1] = arg;
}