Sync changes from upstream repository

This commit is contained in:
Bozo the Builder
2024-06-17 02:22:39 -07:00
parent 6dce0c19e7
commit a14564cf09
27 changed files with 233 additions and 54 deletions

View File

@@ -380,6 +380,14 @@ public:
*/
void SetArray(T*, int, int);
/* Support range based for loops */
T* begin();
T* end();
T const* cbegin();
T* cend();
T const* begin() const;
T const* end() const;
protected:
// implementation //////////////////////////////////////////////////////
void Move( int /* dest index*/, int /* src index */, int /* element count*/ );
@@ -733,6 +741,14 @@ public:
*/
void SetArray(T*, int, int);
/* Support range based for loops */
T* begin();
T* end();
T const* cbegin();
T* cend();
T const* begin() const;
T const* end() const;
protected:
// implementation //////////////////////////////////////////////////////
void Move( int /* dest index*/, int /* src index */, int /* element count*/ );