AArray

Victor Liu

September 27, 2009


AArray is a PHP style array for C++. It supports nesting of arrays and the most used built-in types. It also has a fully (de)serializable.

News

Example usage

typedef AArray::value_type o;

AArray a;
a[2] = o("bla'h");
a["bar"] = o(AArray());
a[3] = o(1.2);
a["foo"] = o(true);
a[1] = o(40);

a["bar"][3] = o("hello");

Download