Источник:
http://alexvoy.blogspot.com/2010/02/...container.html
==============
A short note about the difference between inserting and adding containers to a container.
If we use
+= operator to add new containers to a container, they will be added as a consequence of usual values (plainly).
X++:
static void SisTestContainer(Args _args)
{
container c;
container pair;
int i;
;
pair = [1, "first"];
c += pair;
pair = [2, "second"];
c += pair;
pair = [3, "third"];
c += pair;
infoLog.add(Exception::Info, strfmt("conlen %1", conlen(c)));
for (i = 0; i