Clear the collection but without changing its capacity.
| 182 | /// Clear the collection but without changing its capacity. |
| 183 | /// </summary> |
| 184 | FORCE_INLINE void Clear() |
| 185 | { |
| 186 | Platform::InterlockedExchange(&_count, 0); |
| 187 | } |
| 188 | |
| 189 | /// <summary> |
| 190 | /// Releases this buffer data. |
nothing calls this directly
no test coverage detected