splat method
Splat arg into all lanes of the vector.
Implementation
void splat(double arg) {
  _v3storage[2] = arg;
  _v3storage[1] = arg;
  _v3storage[0] = arg;
}Splat arg into all lanes of the vector.
void splat(double arg) {
  _v3storage[2] = arg;
  _v3storage[1] = arg;
  _v3storage[0] = arg;
}