I don't understand.
Why does this work
colourPos[i].insert(colourPos[i].begin(), 0);
Why can't i just put
colourPos[i].insert(0);
How do I learn what "things" (like insert) need "things" like .begin to work? And what do I mean by "things"?
Last edited on