Returns a pointer to the contiguous buffer containing all the elements.
| 120 | |
| 121 | // Returns a pointer to the contiguous buffer containing all the elements. |
| 122 | const T* flatData() const |
| 123 | { |
| 124 | return mElements.get(); |
| 125 | } |
| 126 | |
| 127 | // Returns a pointer to the contiguous buffer containing all the elements. |
| 128 | T* flatData() |