Function to add new element to the end
| 20 | const T& operator[](size_t index) const; // Subscript operator-const arrays |
| 21 | void push_back(const T& element); // Function to add new element to the end |
| 22 | size_t getSize() const { return m_size; } // Accessor for m_size |
| 23 | |
| 24 | private: |
| 25 | T* m_elements; // Array of type T |