Function ObjectStorage.opApply

Iterate over elements in storage

int opApply (
  scope int delegate(Type value) dg
);

int opApply (
  scope int delegate(const KeyType key, Type value) dg
);

Parameters

NameDescription
dg the delegate which will do something on each element.

Returns

int