On May 16, 2003 07:28 pm, Robert Shearman wrote:
The new column becomes the i'th column. E.g. (inserting at column 2):
0 | 1 | 2 | 3 X X X X
0 | 1 | 2 | 3 | 4 X X X X
0->0, 1->1, 2->3, 3->4
Hope this makes things clearer,
Yes, it does, but now what happens when you insert at 0? This:
0 | 1 | 2 | 3 | 4 X X X X
or this:
0 | 1 | 2 | 3 | 4 X X X X
If it's the first thing (which is what I'd expect), the current code does just that, no?