* Add an element to the array * * @param Item - the element * @return - the index of the added element */
| 103 | * @return - the index of the added element |
| 104 | */ |
| 105 | FORCEINLINE int32 Add(const void* Item) |
| 106 | { |
| 107 | const int32 Index = AddDefaulted(); |
| 108 | uint8* Dest = GetData(Index); |
| 109 | Inner->Copy(Dest, Item); |
| 110 | return Index; |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Add a unique element to the array |
no test coverage detected