splat method

void splat(
  1. double arg
)

Splat arg into all lanes of the vector.

Implementation

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