Dynamic Array of Data Values in 3.0.0b

Since Map and Vector has memory management implemented within, they can no longer accept Value objects. What will be a proper way for which I can store a list of eg, integers, given that the size of the list will be determined/changed during runtime?

Since Map and Vector has memory management implemented within, they can no longer accept Value objects.

Yep, Map<> and Vector<> could only access reference counted objects.

What will be a proper way for which I can store a list of eg, integers, given that the size of the list will be determined/changed during runtime?

I don’t know what you meant. If you want to add a array or dictionary to a value.
you could

ValueVector vec;
vec.push_back(Value(111));
vec.push_back(Value(222));
Value root = Value(vec);

Thank you, I think ValueVector is what I am looking for. I did not know it exist, will give it a try. Basically what i need is an array of Vector with dynamic size