All class functions are defined inline.
[ deal | Source | Keywords | Summary | Ancestors | All Members | Descendants ]
public: | |
ArrayList() ; | |
~ArrayList() ; | |
T& | change(int i) ; |
T | operator() (int i) const ; |
protected: |
Back to the top of ArrayList
ArrayList |
Back to the top of ArrayList
Constructor creating an empty array of length 0. This array uses only memory for one pointer and grows on access to its elements
ArrayList() ;
Function is currently defined inline.
Back to the top of ArrayList
Destructor.
~ArrayList() ;
Function is currently defined inline.
Back to the top of ArrayList
This r/w access function automatically expands the array to be able to hold at least i+1 items. It returns a reference to the i'th item.
T& change(int i) ;
Function is currently defined inline.
Back to the top of ArrayList
Read access to a data item. This function does not expand the array and therefore can only read existing items.
T operator() (int i) const ;
Function is currently defined inline.
Back to the top of ArrayList
public: | ||
---|---|---|
T& | change(int i) ; | |
T | operator() (int i) const ; | |
protected: |
Back to the top of ArrayList
Back to the top of ArrayList
Back to the top of ArrayList
Report problems to jkotula@vitalimages.com