On 3/31/12, Andrej Mitrovic <[email protected]> wrote: > Perhaps you could keep a hash of objects: > __gshared[Object] _store;
Err that should be: __gshared void[0][Object] _store; Or something like that. Not sure if the void[0] part is right, but basically it's used to make set types (hashes with no values).
