Collection.size - multiple declarations
Function Collection.size
returns currently allocated capacity (may be more than length)
size_t size() @property;
Function Collection.size
change capacity (e.g. to reserve big space to avoid multiple reallocations)
void size(
size_t newSize
) @property;