14 inline triangular_vector<T>::triangular_vector(triangular_vector&& other) noexcept
16 assign(std::move(other));
20 inline triangular_vector<T>::triangular_vector(
const triangular_vector& other)
34 assign(nSideSize, data);
44 inline const typename triangular_vector<T>::triangular_vector& triangular_vector<T>::operator=(
45 triangular_vector&& other) noexcept
47 assign(std::move(other));
52 inline const typename triangular_vector<T>::triangular_vector& triangular_vector<T>::operator=(
53 const triangular_vector& other)
62 std::swap(m_pData, other.m_pData);
63 std::swap(m_nSideSize, other.m_nSideSize);
64 std::swap(m_nSize, other.m_nSize);
65 std::swap(m_nAllocatedSize, other.m_nAllocatedSize);
71 if (other.m_pData != m_pData && resize(other.
size_side()))
72 std::memcpy(m_pData, other.m_pData, size() *
sizeof(T));
78 resize(nSideSize, data);
86 const size_type nNewElements = _get_vector_size(nSideSize);
87 if (nNewElements > m_nAllocatedSize)
89 if (
void* pMem = std::realloc(m_pData, nNewElements *
sizeof(T)))
91 m_pData =
static_cast<T*
>(pMem);
92 m_nAllocatedSize = nNewElements;
107 if (nSideSize > 0 && reserve(nSideSize))
109 auto itFirst =
iterator(
this, m_nSize);
111 m_nSideSize = nSideSize;
112 m_nSize = _get_vector_size(nSideSize);
114 auto itLast =
iterator(
this, m_nSize);
126 bool bRet = resize(nSideSize);
137 value_type temp = data;
138 std::fill(begin(), end(), temp);
145 return m_pData[_get_index(nRow, nCol)];
151 m_pData[_get_index(nRow, nCol)] = data;
163 return m_nAllocatedSize;
172 m_nAllocatedSize = 0;
178 size_type nCol) noexcept
181 return (nRow * nRow + nRow) / 2 + nCol;
183 return (nCol * nCol + nCol) / 2 + nRow;
187 inline typename triangular_vector<T>::size_type triangular_vector<T>::_get_vector_size(size_type nSideSize) noexcept
189 return (nSideSize * nSideSize + nSideSize) / 2;
197 inline typename triangular_vector<T>::size_type triangular_vector<T>::size(
void)
const noexcept
207 inline typename triangular_vector<T>::pointer triangular_vector<T>::data(
void) noexcept
218 inline typename triangular_vector<T>::reference triangular_vector<T>::at(size_type nIndex) noexcept
220 return m_pData[nIndex];
227 inline void triangular_vector<T>::clear() noexcept
Non-const random access iterator type.
void free()
Clear vector and free memory.
bool resize(size_type nSideSize)
Resize triangular vector without filling with new value.
void assign(triangular_vector &&other) noexcept
Assigns new contents to the vector, moving from other vector.
bool reserve(size_type nSideSize)
Reserve memory for vector.
void set(size_type nRow, size_type nCol, const_reference data) noexcept
Set value on position.
size_type capacity() const noexcept
Get capacity.
const_reference get(size_type nRow, size_type nCol) const noexcept
Get value on position.
void fill(const_reference data)
Fill vector with value.
size_type size_side() const noexcept
Get matrix side size.
void destruct(iterator_t itStart, iterator_t itEnd)
Call destructors.