35 using const_pointer =
const T*;
37 using const_reference =
const T&;
38 using difference_type = std::ptrdiff_t;
39 using size_type = size_t;
88 void assign(size_type
rows, size_type
cols, const_pointer pData =
nullptr);
103 bool reserve(size_type nElements);
123 bool resize(size_type
rows, size_type
cols, const_reference data);
134 void fill(const_reference elem);
148 const_pointer
operator[](size_type nRow)
const noexcept;
156 const_reference
get(size_type nRow, size_type nCol)
const noexcept;
164 void set(size_type nRow, size_type nCol, const_reference data) noexcept;
170 size_type
rows()
const noexcept;
176 size_type
cols()
const noexcept;
182 size_type
size_x()
const noexcept;
188 size_type
size_y()
const noexcept;
194 size_type
capacity()
const noexcept;
197 pointer m_pData =
nullptr;
198 size_type m_nRows = 0;
199 size_type m_nCols = 0;
200 size_type m_nAllocatedSize = 0;
bool resize(size_type rows, size_type cols)
Resize vector.
void free()
Clear vector and free memory.
size_type rows() const noexcept
Get num of rows in vector.
bool reserve(size_type nElements)
Reserve vector size.
size_type capacity() const noexcept
Get allocated size.
pointer operator[](size_type nRow) noexcept
operator[]
void fill(const_reference elem)
Fill vector with element.
const_reference get(size_type nRow, size_type nCol) const noexcept
Get element.
void set(size_type nRow, size_type nCol, const_reference data) noexcept
Set element.
size_type size_y() const noexcept
Get num of cols in vector.
void assign(vector2d &&other) noexcept
Assign by moving from other vector.
size_type cols() const noexcept
Get num of cols in vector.
size_type size_x() const noexcept
Get num of rows in vector.
#define QX_IMPL_CONTAINER(container)
Macro for random access containers with common functions.