Adds the single item to the collection. Handles automatic buffer resizing. Thread-safe function that can be called from many threads at once. The item to add. The index of the added item.
| 215 | /// <param name="item">The item to add.</param> |
| 216 | /// <returns>The index of the added item.</returns> |
| 217 | FORCE_INLINE int64 Add(const T& item) |
| 218 | { |
| 219 | return Add(&item, 1); |
| 220 | } |
| 221 | |
| 222 | /// <summary> |
| 223 | /// Adds the array of items to the collection. Handles automatic buffer resizing. Thread-safe function that can be called from many threads at once. |
nothing calls this directly
no test coverage detected