| 90 | /// <returns>The pointer to the data in memory.</returns> |
| 91 | template<typename T> |
| 92 | FORCE_INLINE T* Move() |
| 93 | { |
| 94 | return static_cast<T*>(Move(sizeof(T))); |
| 95 | } |
| 96 | |
| 97 | /// <summary> |
| 98 | /// Skips the data from the target buffer without reading from it. Moves the read pointer in the buffer forward. |
no outgoing calls
no test coverage detected