Same as insertBack, but in operator form.
Array!int arr; scope(exit) arr.free(); arr ~= [1,2,3]; assert(arr.data == [1,2,3]);
See Implementation
Same as insertBack, but in operator form.