Gets iterator for ending of the collection.
| 1051 | /// Gets iterator for ending of the collection. |
| 1052 | /// </summary> |
| 1053 | FORCE_INLINE Iterator End() const |
| 1054 | { |
| 1055 | return Iterator(this, _count); |
| 1056 | } |
| 1057 | }; |
| 1058 | |
| 1059 | template<typename T, typename AllocationType> |
no test coverage detected