Why not use `vector`?
On Friday, June 24, 2016 at 4:16:49 PM UTC+2, jw3126 wrote: > > I have a Tuple and I want to drop its ith element (e.g. construct a new > tuple with the same elements, except the ith is missing). For example > > (1,2,3,4) , 1 --> (2,3,4) > (1,2,3,4) , 3 --> (1,2,4) > (1,2,3,4) , 4 --> (1,2,3) > > How to do this? >
