Template class for matrix accessor's iterators. More...
#include <mrpt/math/CMatrixViews.h>
Public Types | |
| typedef std::random_access_iterator_tag | iterator_category |
| typedef T | value_type |
| typedef int | difference_type |
| typedef T * | pointer |
| typedef T & | reference |
Public Member Functions | |
| AccessorIterator (A &obj, size_t N) | |
| T & | operator* () const |
| AccessorIterator< A, T > & | operator++ () |
| AccessorIterator< A, T > | operator++ (int) |
| AccessorIterator< A, T > & | operator-- () |
| AccessorIterator< A, T > | operator-- (int) |
| AccessorIterator< A, T > & | operator+= (int off) |
| AccessorIterator< A, T > | operator+ (int off) const |
| AccessorIterator< A, T > & | operator-= (int off) |
| AccessorIterator< A, T > | operator- (int off) const |
| int | operator- (const AccessorIterator< A, T > &it) const |
| T & | operator[] (int off) const |
| bool | operator== (const AccessorIterator< A, T > &it) const |
| bool | operator!= (const AccessorIterator< A, T > &it) const |
Protected Attributes | |
| A * | base |
| int | pos |
Template class for matrix accessor's iterators.
Definition at line 526 of file CMatrixViews.h.
| typedef int mrpt::math::detail::AccessorIterator< A, T >::difference_type |
Definition at line 534 of file CMatrixViews.h.
| typedef std::random_access_iterator_tag mrpt::math::detail::AccessorIterator< A, T >::iterator_category |
Definition at line 532 of file CMatrixViews.h.
| typedef T* mrpt::math::detail::AccessorIterator< A, T >::pointer |
Definition at line 535 of file CMatrixViews.h.
| typedef T& mrpt::math::detail::AccessorIterator< A, T >::reference |
Definition at line 536 of file CMatrixViews.h.
| typedef T mrpt::math::detail::AccessorIterator< A, T >::value_type |
Definition at line 533 of file CMatrixViews.h.
| mrpt::math::detail::AccessorIterator< A, T >::AccessorIterator | ( | A & | obj, | |
| size_t | N | |||
| ) | [inline] |
Definition at line 538 of file CMatrixViews.h.
| bool mrpt::math::detail::AccessorIterator< A, T >::operator!= | ( | const AccessorIterator< A, T > & | it | ) | const [inline] |
Definition at line 587 of file CMatrixViews.h.
References mrpt::math::detail::AccessorIterator< A, T >::operator==().
| T& mrpt::math::detail::AccessorIterator< A, T >::operator* | ( | ) | const [inline] |
Definition at line 539 of file CMatrixViews.h.
References mrpt::math::detail::AccessorIterator< A, T >::base, and mrpt::math::detail::AccessorIterator< A, T >::pos.
| AccessorIterator<A,T> mrpt::math::detail::AccessorIterator< A, T >::operator+ | ( | int | off | ) | const [inline] |
Definition at line 564 of file CMatrixViews.h.
| AccessorIterator<A,T> mrpt::math::detail::AccessorIterator< A, T >::operator++ | ( | int | ) | [inline] |
Definition at line 546 of file CMatrixViews.h.
| AccessorIterator<A,T>& mrpt::math::detail::AccessorIterator< A, T >::operator++ | ( | ) | [inline] |
Definition at line 542 of file CMatrixViews.h.
References mrpt::math::detail::AccessorIterator< A, T >::pos.
| AccessorIterator<A,T>& mrpt::math::detail::AccessorIterator< A, T >::operator+= | ( | int | off | ) | [inline] |
Definition at line 560 of file CMatrixViews.h.
References mrpt::math::detail::AccessorIterator< A, T >::pos.
| int mrpt::math::detail::AccessorIterator< A, T >::operator- | ( | const AccessorIterator< A, T > & | it | ) | const [inline] |
Definition at line 578 of file CMatrixViews.h.
References mrpt::math::detail::AccessorIterator< A, T >::pos.
| AccessorIterator<A,T> mrpt::math::detail::AccessorIterator< A, T >::operator- | ( | int | off | ) | const [inline] |
Definition at line 573 of file CMatrixViews.h.
| AccessorIterator<A,T> mrpt::math::detail::AccessorIterator< A, T >::operator-- | ( | int | ) | [inline] |
Definition at line 555 of file CMatrixViews.h.
| AccessorIterator<A,T>& mrpt::math::detail::AccessorIterator< A, T >::operator-- | ( | ) | [inline] |
Definition at line 551 of file CMatrixViews.h.
References mrpt::math::detail::AccessorIterator< A, T >::pos.
| AccessorIterator<A,T>& mrpt::math::detail::AccessorIterator< A, T >::operator-= | ( | int | off | ) | [inline] |
Definition at line 569 of file CMatrixViews.h.
References mrpt::math::detail::AccessorIterator< A, T >::pos.
| bool mrpt::math::detail::AccessorIterator< A, T >::operator== | ( | const AccessorIterator< A, T > & | it | ) | const [inline] |
Definition at line 584 of file CMatrixViews.h.
References mrpt::math::detail::AccessorIterator< A, T >::base, and mrpt::math::detail::AccessorIterator< A, T >::pos.
Referenced by mrpt::math::detail::AccessorIterator< A, T >::operator!=().
| T& mrpt::math::detail::AccessorIterator< A, T >::operator[] | ( | int | off | ) | const [inline] |
Definition at line 581 of file CMatrixViews.h.
References mrpt::math::detail::AccessorIterator< A, T >::base, and mrpt::math::detail::AccessorIterator< A, T >::pos.
A* mrpt::math::detail::AccessorIterator< A, T >::base [protected] |
Definition at line 528 of file CMatrixViews.h.
Referenced by mrpt::math::detail::AccessorIterator< A, T >::operator*(), mrpt::math::detail::AccessorIterator< A, T >::operator==(), and mrpt::math::detail::AccessorIterator< A, T >::operator[]().
int mrpt::math::detail::AccessorIterator< A, T >::pos [protected] |
Definition at line 529 of file CMatrixViews.h.
Referenced by mrpt::math::detail::AccessorIterator< A, T >::operator*(), mrpt::math::detail::AccessorIterator< A, T >::operator++(), mrpt::math::detail::AccessorIterator< A, T >::operator+=(), mrpt::math::detail::AccessorIterator< A, T >::operator-(), mrpt::math::detail::AccessorIterator< A, T >::operator--(), mrpt::math::detail::AccessorIterator< A, T >::operator-=(), mrpt::math::detail::AccessorIterator< A, T >::operator==(), and mrpt::math::detail::AccessorIterator< A, T >::operator[]().
| Page generated by Doxygen 1.6.1 for MRPT 0.9.0 SVN: at Mon Jun 7 06:47:58 UTC 2010 |