14 inline vector2d<T>::vector2d(vector2d&& other) noexcept
16 assign(std::move(other));
20 inline vector2d<T>::vector2d(
const vector2d& other)
28 assign(rows, cols, pData);
34 assign(rows, cols, data);
44 inline const typename vector2d<T>::vector2d& vector2d<T>::operator=(vector2d&& other) noexcept
46 assign(std::move(other));
51 inline const typename vector2d<T>::vector2d& vector2d<T>::operator=(
const vector2d& other)
60 std::swap(m_pData, other.m_pData);
61 std::swap(m_nRows, other.m_nRows);
62 std::swap(m_nCols, other.m_nCols);
63 std::swap(m_nAllocatedSize, other.m_nAllocatedSize);
69 if (other.m_pData != m_pData)
70 assign(other.
rows(), other.
cols(), other.m_pData);
76 if (resize(rows, cols) && pData)
77 std::memcpy(m_pData, pData, rows * cols *
sizeof(T));
83 if (resize(rows, cols))
92 if (nElements > m_nAllocatedSize)
94 if (
void* pMem = std::realloc(m_pData, nElements *
sizeof(T)))
96 m_pData =
static_cast<T*
>(pMem);
97 m_nAllocatedSize = nElements;
110 if (rows > 0 && cols > 0)
112 const size_type nSizeRequired = rows * cols;
114 if (nSizeRequired > m_nAllocatedSize)
115 bRet = reserve(nSizeRequired);
121 auto itFirst =
iterator(
this, rows * cols);
122 auto itLast =
iterator(
this, m_nRows * m_nCols);
136 const bool bRet = resize(rows, cols);
150 m_nAllocatedSize = 0;
156 value_type temp = elem;
157 std::fill(begin(), end(), temp);
163 return m_pData + nRow * m_nCols;
169 return m_pData + nRow * m_nCols;
175 return (*
this)[nRow][nCol];
179 inline void vector2d<T>::set(size_type nRow, size_type nCol, const_reference data) noexcept
181 (*this)[nRow][nCol] = data;
211 return m_nAllocatedSize;
221 return size_x() * size_y();
229 inline typename vector2d<T>::pointer vector2d<T>::data() noexcept
240 inline typename vector2d<T>::reference vector2d<T>::at(size_type nIndex) noexcept
242 return m_pData[nIndex];
249 inline void vector2d<T>::clear() noexcept
Non-const random access iterator type.
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.
void destruct(iterator_t itStart, iterator_t itEnd)
Call destructors.