splat method

void splat (double arg)

Splat arg into all lanes of the vector.

Implementation

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