Vector4.all constructor

Vector4.all(double value)

Splat value into all lanes of the vector.

Implementation

factory Vector4.all(double value) => new Vector4.zero()..splat(value);