Coin
4.0.3
Coin3D core library
|
The SbPList class is a container class for void pointers. More...
#include <Inventor/lists/SbPList.h>
Public Member Functions | |
SbPList (const int sizehint=DEFAULTSIZE) | |
SbPList (const SbPList &l) | |
~SbPList () | |
void | append (void *item) |
void | copy (const SbPList &l) |
int | find (const void *item) const |
void | fit (void) |
void * | get (const int index) const |
void ** | getArrayPtr (const int start=0) const |
int | getLength (void) const |
void | insert (void *item, const int insertbefore) |
int | operator!= (const SbPList &l) const |
SbPList & | operator= (const SbPList &l) |
int | operator== (const SbPList &l) const |
void *& | operator[] (const int index) const |
void | remove (const int index) |
void | removeFast (const int index) |
void | removeItem (void *item) |
void | set (const int index, void *item) |
void | truncate (const int length, const int fit=0) |
Protected Member Functions | |
void | expand (const int size) |
int | getArraySize (void) const |
The SbPList class is a container class for void pointers.
SbPList::SbPList | ( | const int | sizehint = DEFAULTSIZE | ) |
This constructor initializes the internal allocated size for the list to sizehint. Note that the list will still initially contain zero items.
Default constructor.
SbPList::~SbPList | ( | ) |
Destructor.
Append item to the end of the list.
Automatically allocates more items internally if needed.
Expand the list to contain size items. The new items added at the end have undefined value.
Return index of first occurrence of item in the list, or -1 if item is not present.
Fit the allocated array exactly around the length of the list, discarding memory spent on unused pre-allocated array cells.
You should normally not need or want to call this method, and it is only available for the sake of having the option to optimize memory usage for the unlikely event that you should throw around huge SbList objects within your application.
Returns element at index. Does not expand array bounds if index is outside the list.
Returns pointer to a non-modifiable array of the lists elements. start specifies an index into the array.
The caller is not responsible for freeing up the array, as it is just a pointer into the internal array used by the list.
|
inlineprotected |
Return number of items there's allocated space for in the array.
|
inline |
Returns number of items in the list.
Insert item at index insertbefore.
insertbefore should not be larger than the current number of items in the list.
Inequality operator. Returns TRUE
if this list and l are not equal.
Equality operator. Returns TRUE
if this list and l are identical, containing the exact same ordered set of elements.
Returns element at index.
Will automatically expand the size of the internal array if index is outside the current bounds of the list. The values of any additional pointers are then set to NULL
.
Remove the item at index, moving all subsequent items downwards one place in the list.
Remove the item at index, moving the last item into its place and truncating the list.
Removes an item from the list. If there are several items with the same value, removes the item with the lowest index.
Index operator to set element at index. Does not expand array bounds if index is outside the list.
Shorten the list to contain length elements, removing items from index length and onwards.
If fit is non-zero, will also shrink the internal size of the allocated array. Note that this is much less efficient than not re-fitting the array size.