|
ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
|
A class template for the two non-const iterators. More...


Public Member Functions | |
| iterator_t< reverse_t > & | operator= (iterator_t< reverse_t > const &i) |
| We can assign one output iterator from another. More... | |
| iterator_t< reverse_t > & | operator++ () |
| The prefix ++ operator. More... | |
| iterator_t< reverse_t > | operator++ (int) |
| The postfix ++ operator. More... | |
| iterator_t< reverse_t > & | operator-- () |
| The prefix – operator. More... | |
| iterator_t< reverse_t > | operator-- (int) |
| The postfix – operator. More... | |
| bool | operator== (const_iterator_t< reverse_t > const &i) const |
| Comparison with const iterator. More... | |
| bool | operator!= (const_iterator_t< reverse_t > const &i) const |
| Comparison with const iterator. More... | |
| iterator_t () | |
| The default constructor. More... | |
Public Member Functions inherited from gsl::matrix_complex_long_double::iterator_base< matrix_complex_long_double, vector_complex_long_double, reverse_t > | |
| reference | operator* () const |
| Dereference the pointer. More... | |
| pointer | operator-> () const |
| Dereference the pointer. More... | |
| bool | operator== (iterator_base< matrix_complex_long_double, vector_complex_long_double, reverse_t > const &i) const |
| The == operator. More... | |
| bool | operator!= (iterator_base< matrix_complex_long_double, vector_complex_long_double, reverse_t > const &i) const |
| The != operator. More... | |
Protected Member Functions | |
| iterator_t (matrix_complex_long_double *v, size_t position) | |
| This constructor allows vector to create non-default iterators. More... | |
Protected Member Functions inherited from gsl::matrix_complex_long_double::iterator_base< matrix_complex_long_double, vector_complex_long_double, reverse_t > | |
| void | increment () |
| Increment the iterator. More... | |
| void | decrement () |
| Decrement the iterator. More... | |
| iterator_base () | |
| The iterator is default constructible. More... | |
| iterator_base (matrix_complex_long_double *v, size_t position) | |
| This constructor allows vector to create non-default iterators. More... | |
Friends | |
| class | matrix_complex_long_double |
Additional Inherited Members | |
Public Types inherited from gsl::matrix_complex_long_double::iterator_base< matrix_complex_long_double, vector_complex_long_double, reverse_t > | |
| typedef std::bidirectional_iterator_tag | iterator_category |
| An iterator must have an iterator category. More... | |
| typedef vector_complex_long_double | value_type |
| An iterator must have a value type. More... | |
| typedef vector_complex_long_double_ptr | pointer |
| An iterator must have a pointer typea. More... | |
| typedef value_type | reference |
| An iterator must have a reference type. More... | |
Protected Attributes inherited from gsl::matrix_complex_long_double::iterator_base< matrix_complex_long_double, vector_complex_long_double, reverse_t > | |
| matrix_complex_long_double * | v |
| Store a pointer to a matrix we can iterate over: 0 if no matrix. More... | |
| size_t | position |
| Mark position of iterator within matrix. More... | |
A class template for the two non-const iterators.
Definition at line 385 of file matrix_complex_long_double.hpp.
|
inline |
The default constructor.
Definition at line 457 of file matrix_complex_long_double.hpp.
|
inlineprotected |
This constructor allows vector to create non-default iterators.
| v | The matrix_complex_long_double that creates this |
| position | The initial postion of the iterator |
Definition at line 466 of file matrix_complex_long_double.hpp.
|
inline |
Comparison with const iterator.
| i | another iterator |
false or true according as this points to same element as i Definition at line 451 of file matrix_complex_long_double.hpp.
References gsl::matrix_complex_long_double::iterator_t< reverse_t >::operator==().
|
inline |
The prefix ++ operator.
this Definition at line 404 of file matrix_complex_long_double.hpp.
References gsl::matrix_complex_long_double::iterator_base< container, content, reverse_t >::increment().
|
inline |
The postfix ++ operator.
this Definition at line 412 of file matrix_complex_long_double.hpp.
References gsl::matrix_complex_long_double::iterator_base< container, content, reverse_t >::increment().
|
inline |
The prefix – operator.
this Definition at line 424 of file matrix_complex_long_double.hpp.
References gsl::matrix_complex_long_double::iterator_base< container, content, reverse_t >::decrement().
|
inline |
The postfix – operator.
this; Definition at line 432 of file matrix_complex_long_double.hpp.
References gsl::matrix_complex_long_double::iterator_base< container, content, reverse_t >::decrement().
|
inline |
We can assign one output iterator from another.
| i | The iterator to copy |
Definition at line 393 of file matrix_complex_long_double.hpp.
References gsl::matrix_complex_long_double::iterator_base< container, content, reverse_t >::position, and gsl::matrix_complex_long_double::iterator_base< container, content, reverse_t >::v.
|
inline |
Comparison with const iterator.
| i | another iterator |
true or false according as this points to same element as i Definition at line 443 of file matrix_complex_long_double.hpp.
References gsl::matrix_complex_long_double::iterator_base< container, content, reverse_t >::position, gsl::matrix_complex_long_double::iterator_base< matrix_complex_long_double, vector_complex_long_double, reverse_t >::position, gsl::matrix_complex_long_double::iterator_base< container, content, reverse_t >::v, and gsl::matrix_complex_long_double::iterator_base< matrix_complex_long_double, vector_complex_long_double, reverse_t >::v.
Referenced by gsl::matrix_complex_long_double::iterator_t< reverse_t >::operator!=().
|
friend |
Definition at line 459 of file matrix_complex_long_double.hpp.