Gets the amount of the elements that can be hold by collection without resizing.
| 46 | /// Gets the amount of the elements that can be hold by collection without resizing. |
| 47 | /// </summary> |
| 48 | FORCE_INLINE int32 Capacity() const |
| 49 | { |
| 50 | return _chunks.Count() * ChunkSize; |
| 51 | } |
| 52 | |
| 53 | /// <summary> |
| 54 | /// Returns true if array isn't empty. |