Hi
It maybe I'm barking up the wrong tree here but i'll try and explain what I'm trying to do.
I'm trying to update an object, rather an element within an object, and would like to be able to store the location as a variable.
For example:
ref = Object[cat1][cat2][cat3];
I don't wish ref to store the contents of the referenced data with the object, rather the location within its structure. This would allow me to update the Object after some iteration.
Instead of:
Object[cat1][cat2][cat3] = data;
(which I've lost through further iteration)
ref = data;
I'm kinda tying myself in knots and would really like if someone could point me in the right direction. Thanks in advance!
It maybe I'm barking up the wrong tree here but i'll try and explain what I'm trying to do.
I'm trying to update an object, rather an element within an object, and would like to be able to store the location as a variable.
For example:
ref = Object[cat1][cat2][cat3];
I don't wish ref to store the contents of the referenced data with the object, rather the location within its structure. This would allow me to update the Object after some iteration.
Instead of:
Object[cat1][cat2][cat3] = data;
(which I've lost through further iteration)
ref = data;
I'm kinda tying myself in knots and would really like if someone could point me in the right direction. Thanks in advance!