Gets an estimate of the total number of elements currently in the queue.
| 44 | /// Gets an estimate of the total number of elements currently in the queue. |
| 45 | /// </summary> |
| 46 | FORCE_INLINE int32 Count() const |
| 47 | { |
| 48 | return static_cast<int32>(Base::size_approx()); |
| 49 | } |
| 50 | |
| 51 | /// <summary> |
| 52 | /// Adds item to the collection. |
nothing calls this directly
no test coverage detected