Function lvector

L-value pseudovector for assignment purposes.

auto lvector(T...) (
  ref T x
);

Examples

float a, b, c;
lvector(a, b, c) = Vector3f(10, 4, 2);