Rogue Wave banner
Previous fileTop of DocumentContentsIndexNext file

RWMathVec<T>::iterator



Data Type and Member Function Indexes
(exclusive of constructors and destructors)

Synopsis

template <class T>
class RWMathVec<T>::iterator;

Description

Class RWMathVec<T>::iterator is the random access iterator for the RWMathVec<T> collection class. The iterator class behaves like a pointer to type T and is used to increment through elements of an RWMathVec<T>.

Example

Public Constructors

RWMathVec<T>::iterator();
RWMathVec<T>::iterator(const iterator& i);

Public Member Operators

RWMathVec<T>::iterator&    operator++();
RWMathVec<T>::iterator&    operator--();
RWMathVec<T>::iterator&    operator++(int);
RWMathVec<T>::iterator&    operator--(int);
RWMathVec<T>::iterator&  operator+=(RWMathVec<T>::difference_type d);
RWMathVec<T>::iterator&  operator-=(RWMathVec<T>::difference_type d);
RWMathVec<T>::iterator& 
operator=(const RWMathVec<T>::iterator& i) const;
RWMathVec<T>::difference_type 
operator-(const RWMathVec<T>::iterator& i) const;
RWMathVec<T>::iterator& 
operator+(RWMathVec<T>::difference_type d) const;
RWMathVec<T>::iterator& 
operator-(RWMathVec<T>::difference_type d) const;
T&    operator[]() const;
T&    operator*() const;
RWBoolean  operator==(const RWMathVec<T>::iterator& i) const;
RWBoolean  operator!=(const RWMathVec<T>::iterator& i) const;
RWBoolean  operator<(const RWMathVec<T>::iterator& i) const;
RWBoolean  operator>(const RWMathVec<T>::iterator& i) const;
RWBoolean  operator<=(const RWMathVec<T>::iterator& i) const;
RWBoolean  operator>=(const RWMathVec<T>::iterator& i) const;


Previous fileTop of DocumentContentsIndexNext file

©Copyright 1999, Rogue Wave Software, Inc.
Send mail to report errors or comment on the documentation.