Adds the unique item to the collection if it doesn't exist. The item to add.
| 499 | /// </summary> |
| 500 | /// <param name="item">The item to add.</param> |
| 501 | FORCE_INLINE void AddUnique(const T& item) |
| 502 | { |
| 503 | if (!Contains(item)) |
| 504 | Add(item); |
| 505 | } |
| 506 | |
| 507 | /// <summary> |
| 508 | /// Adds the given amount of items to the collection. |
no test coverage detected