* Set new value for the i'th element * * @param Index - the index * @param Item - the element to be set */
| 292 | * @param Item - the element to be set |
| 293 | */ |
| 294 | FORCEINLINE void Set(int32 Index, const void* Item) |
| 295 | { |
| 296 | if (IsValidIndex(Index)) |
| 297 | { |
| 298 | Inner->Copy(GetData(Index), Item); |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | /** |
| 303 | * Swap two elements |
no test coverage detected