mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-12-08 02:58:24 +00:00
Return back iterator access for CUtlLeanVector
This commit is contained in:
parent
40a227f090
commit
31897b9a38
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user