All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Array< T > Class Template Reference Safe arrays of arbitrary types.Class Array provides safe arrays of arbitrary type. Array elements are accessed just like ordinary C++ array elements by means of the index operator[](). Safety is provided by. More...
Detailed Descriptiontemplate<class T>
|
|
explicit |
void append | ( | int | n | ) |
append n
uninitialized elements.
Definition at line 99 of file array.h.
Referenced by Array< bool >::reSize().
void append | ( | int | n, |
const T * | p_array | ||
) |
void append | ( | const Array< T > & | p_array | ) |
void clear | ( | ) |
remove all elements.
Definition at line 176 of file array.h.
Referenced by SPxSolver::clear(), SPxMainSM::duplicateCols(), and SPxMainSM::duplicateRows().
T* get_ptr | ( | ) |
void insert | ( | int | i, |
int | n | ||
) |
insert n
uninitialized elements before i
'th element.
Definition at line 115 of file array.h.
Referenced by Array< bool >::append(), and Array< bool >::insert().
void insert | ( | int | i, |
int | n, | ||
const T * | p_array | ||
) |
void insert | ( | int | i, |
const Array< T > & | p_array | ||
) |
bool isConsistent | ( | ) | const |
consistency check
Definition at line 261 of file array.h.
Referenced by Array< bool >::Array(), and Array< bool >::operator=().
void remove | ( | int | n = 0 , |
int | m = 1 |
||
) |
void reSize | ( | int | newsize | ) |
reset the number of elements.
Definition at line 192 of file array.h.
Referenced by SPxSolver::init(), and Array< bool >::operator=().
int size | ( | ) | const |
return the number of elements.
Definition at line 186 of file array.h.
Referenced by Array< bool >::append(), Array< bool >::insert(), Array< bool >::operator=(), Array< bool >::operator[](), Array< bool >::remove(), and Array< bool >::reSize().
|
protected |
the array of elements
Definition at line 69 of file array.h.
Referenced by Array< bool >::Array(), Array< bool >::clear(), Array< bool >::get_ptr(), Array< bool >::insert(), Array< bool >::isConsistent(), Array< bool >::operator=(), Array< bool >::operator[](), Array< bool >::remove(), and Array< bool >::~Array().
|
protected |
the length of array data
Definition at line 68 of file array.h.
Referenced by Array< bool >::Array(), Array< bool >::clear(), Array< bool >::insert(), Array< bool >::isConsistent(), Array< bool >::remove(), Array< bool >::size(), and Array< bool >::~Array().
© 2003-2013 by Zuse Institute Berlin (ZIB), Imprint | Generated on Wed Jan 9 2013 for SoPlex by doxygen |