Array<type> class public functions

Array
~Array
operator*
operator*=
operator+
operator+=
operator-
operator-=
operator/
operator/=
operator=
setAll
sum
zero
An index of inherited functions can be found at the bottom of this page.
Array(void);
No description available.

Array(int arraySize);
No description available.

Array(Array<type>& aArray);
No description available.

Array(int arraySize, type *anArray);
No description available.

~Array();
No description available.

void setAll(type aValue);
No description available.

type sum(void);
Returns the sum of all elements in the Array object.

type sum(int lowIndex, int hiIndex);
Returns the sum of all elements in the Array object within the specified range.

void zero(int minIndex = -1, int maxIndex = -1);
No description available.

Array<type>& operator=(const Array<type>& aArray);
No description available.

Array<type>& operator+=(const Array<type>& aArray);
No description available.

Array<type>& operator-=(const Array<type>& aArray);
No description available.

Array<type>& operator*=(const Array<type>& aArray);
No description available.

Array<type>& operator/=(const Array<type>& aArray);
No description available.

Array<type> operator+(const Array<type>& aArray) const;
No description available.

Array<type> operator+(type aNumber) const;
No description available.

Array<type> operator-(const Array<type>& aArray) const;
No description available.

Array<type> operator-(void) const;
No description available.

Array<type> operator-(type aNumber) const;
No description available.

Array<type> operator*(const Array<type>& aArray) const;
No description available.

Array<type> operator*(type aNumber) const;
No description available.

Array<type> operator/(const Array<type>& aArray) const;
No description available.


Functions inherited from Collection<type>:
Collection
~Collection
allowGrowth
append
getAllocSize
getBase
getSize
grow
operator[]
pointer
setAllocSize
setGrowth
setSize