splat method

void splat (double arg)

Splat arg into all lanes of the vector.

Implementation

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