Hello,
is there a way to use some sort of list as an array? I want to, example:
list<int> myList;
myList[3] = 4;
int a = myList[3];
mylist[30000243857292084] = 56937;
a = mylist[30000243857292084];
myList[0] = 0;
int b = myList[0];
...
Is there any way to do something similiar? ThanX in advance,
JVFF
is there a way to use some sort of list as an array? I want to, example:
list<int> myList;
myList[3] = 4;
int a = myList[3];
mylist[30000243857292084] = 56937;
a = mylist[30000243857292084];
myList[0] = 0;
int b = myList[0];
...
Is there any way to do something similiar? ThanX in advance,
JVFF