|
SoPlex Doxygen Documentation
|
Go to the documentation of this file.
148 memmove(&( data[i+n]), &( data[i]), j - i);
157 memcpy(&( data[i]), t, n* sizeof(T));
172 void remove( int n = 0, int m = 1)
174 assert(n < size() && n >= 0);
177 memmove(&( data[n]), &( data[n + m]), ( size() - (n + m)) * sizeof(T));
185 assert(m <= size() && m >= 0);
212 else if (newsize < 0)
241 ptrdiff_t reMax( int newMax = 1, int newSize = -1)
245 if (newMax < newSize)
261 return reinterpret_cast<char* >( data) - reinterpret_cast<char*>(olddata);
279 #ifdef ENABLE_CONSISTENCY_CHECKS
319 thesize = (p_size < 0) ? 0 : p_size;
339 #endif // _DATAARRAY_H_
|