Alias Vector.opOpAssign

Operator ~= and += is same as append

struct Vector
{
  // ...
  alias opOpAssign(string op) = List.append;
  // ...
}