1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-19 03:56:10 +08:00

Return back iterator access for CUtlLeanVector

This commit is contained in:
GAMMACASE
2025-08-02 15:35:42 +03:00
parent 40a227f090
commit 31897b9a38

View File

@ -459,6 +459,9 @@ public:
bool IsValidIterator( const Iterator_t &it ) const { return this->IsIdxValid( it.index ); }
Iterator_t InvalidIterator() const { return Iterator_t( InvalidIndex() ); }
T &operator[]( const Iterator_t &it ) { return Element( it.index ); }
const T &operator[]( const Iterator_t &it ) const { return Element( it.index ); }
// element access
T& operator[]( int i );
const T& operator[]( int i ) const;