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


Public Types | |
| typedef iterator_base< block_complex_long_doubleconst, longdouble, reverse >::difference_type | difference_type |
| Difference type. More... | |
Public Types inherited from gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse > | |
| typedef complex_long_double | value_type |
| An iterator must have a value_type. More... | |
| typedef complex_long_double_ref | reference |
| An iterator must have a reference type. More... | |
| typedef complex_long_double_ptr | pointer |
| An iterator must have a pointer type. More... | |
| typedef std::random_access_iterator_tag | iterator_category |
| An iterator must have a pointer type. More... | |
| typedef ptrdiff_t | difference_type |
| An iterator must have a difference_type. More... | |
Public Member Functions | |
| const_iterator_t< reverse > & | operator= (const_iterator_t< reverse > const &i) |
| We can assign one output iterator from another. More... | |
| const_iterator_t< reverse > & | operator++ () |
| The prefix ++ operator. More... | |
| const_iterator_t< reverse > | operator++ (int) |
| The postfix ++ operator. More... | |
| const_iterator_t< reverse > & | operator-- () |
| The prefix – operator. More... | |
| const_iterator_t< reverse > | operator-- (int) |
| The postfix – operator. More... | |
| const_iterator_t< reverse > & | operator+= (difference_type const n) |
| The += operator. More... | |
| const_iterator_t< reverse > & | operator-= (difference_type const n) |
| The -= operator. More... | |
| const_iterator_t< reverse > | operator+ (difference_type const n) const |
| The + operator. More... | |
| const_iterator_t< reverse > | operator- (difference_type const n) const |
| The - operator: subtract distance from iterator. More... | |
| difference_type | operator- (const_iterator_t< reverse > const &i) const |
| The - operator: find distance between two iterators. More... | |
| difference_type | operator- (iterator_t< reverse > const &i) const |
| The - operator: find distance between two iterators. More... | |
| const_iterator_t () | |
| The default constructor. More... | |
| const_iterator_t (iterator_t< reverse > const &i) | |
| A copy constructor. More... | |
| bool | operator== (iterator_t< reverse > const &i) const |
| Comparison with non-const iterator. More... | |
| bool | operator!= (iterator_t< reverse > const &i) const |
| Comparison with non-const iterator. More... | |
| bool | operator< (iterator_t< reverse > const &i) const |
| Comparison with non-const iterator. More... | |
| bool | operator== (const_iterator_t< reverse > const &i) const |
| Comparison with const iterator. More... | |
| bool | operator!= (const_iterator_t< reverse > const &i) const |
| Comparison with const iterator. More... | |
| bool | operator< (const_iterator_t< reverse > const &i) const |
| Comparison with const iterator. More... | |
Public Member Functions inherited from gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse > | |
| reference | operator* () const |
| Dereference the pointer. More... | |
| pointer | operator-> () const |
| Dereference the pointer. More... | |
| reference | operator[] (difference_type const n) const |
| Get element at i + n by reference ([] operator). More... | |
| difference_type | operator- (iterator_base< block_complex_long_double const, long double, reverse > const &i) const |
| The - operator: find distance between two iterators. More... | |
| bool | operator== (iterator_base< block_complex_long_double const, long double, reverse > const &i) const |
| The == operator. More... | |
| bool | operator!= (iterator_base< block_complex_long_double const, long double, reverse > const &i) const |
| The != operator. More... | |
| bool | operator< (iterator_base< block_complex_long_double const, long double, reverse > const &i) const |
| The < operator is used to compare iterators. More... | |
Protected Member Functions | |
| const_iterator_t (block_complex_long_double const *v, difference_type position) | |
| This constructor allows block_complex_long_double to create non-default iterators. More... | |
Protected Member Functions inherited from gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse > | |
| void | increment () |
| Increment the iterator. More... | |
| void | decrement () |
| Derement the iterator. More... | |
| void | shift (difference_type const n) |
| Shift iterator n places. More... | |
| iterator_base () | |
| The iterator is default constructible. More... | |
| iterator_base (block_complex_long_double const *v, difference_type position) | |
| This constructor allows block_complex_long_double to create non-default iterators. More... | |
Friends | |
| class | block_complex_long_double |
Additional Inherited Members | |
Protected Attributes inherited from gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse > | |
| block_complex_long_double const * | v |
| Store a pointer to a block_complex_long_double we can iterate over: 0 if no block_complex_long_double. More... | |
| difference_type | position |
| Mark position of iterator within block_complex_long_double. More... | |
A class template for the const iterators.
Definition at line 756 of file block_complex_long_double.hpp.
| typedef iterator_base<block_complex_long_doubleconst,longdouble,reverse>::difference_type gsl::block_complex_long_double::const_iterator_t< reverse >::difference_type |
Difference type.
Definition at line 814 of file block_complex_long_double.hpp.
|
inline |
The default constructor.
Definition at line 892 of file block_complex_long_double.hpp.
|
inline |
A copy constructor.
| i | The non-const iterator to copy |
Definition at line 897 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::iterator_base< container, content, reverse >::position, and gsl::block_complex_long_double::iterator_base< container, content, reverse >::v.
|
inlineprotected |
This constructor allows block_complex_long_double to create non-default iterators.
| v | The block_complex_long_double that creates this |
| position | The initial postion of the iterator |
Definition at line 979 of file block_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 949 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::const_iterator_t< reverse >::operator==().
|
inline |
Comparison with non-const iterator.
| i | another iterator |
false or true according as this points to same element as i Definition at line 914 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::const_iterator_t< reverse >::operator==().
|
inline |
The + operator.
| n | A difference_type value to be added |
Definition at line 842 of file block_complex_long_double.hpp.
References gsl::rstat::n().
|
inline |
The prefix ++ operator.
this Definition at line 776 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::iterator_base< container, content, reverse >::increment().
|
inline |
The postfix ++ operator.
this Definition at line 784 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::iterator_base< container, content, reverse >::increment().
|
inline |
The += operator.
| n | A difference_type value to be added to position of iterator |
this Definition at line 821 of file block_complex_long_double.hpp.
|
inline |
The - operator: find distance between two iterators.
| i | A second iterator |
this and i Definition at line 864 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::iterator_base< container, content, reverse >::operator-().
|
inline |
The - operator: subtract distance from iterator.
| n | A difference_type value to be subtracted |
Definition at line 854 of file block_complex_long_double.hpp.
References gsl::rstat::n().
|
inline |
The - operator: find distance between two iterators.
| i | A second iterator |
this and i Definition at line 872 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::ccgsl_pointer, gsl::exception::GSL_EFAILED, gsl::block_complex_long_double::iterator_base< container, content, reverse >::position, gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse >::position, gsl::block_complex_long_double::iterator_base< container, content, reverse >::v, and gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse >::v.
|
inline |
The prefix – operator.
this Definition at line 796 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::iterator_base< container, content, reverse >::decrement().
|
inline |
The postfix – operator.
this Definition at line 804 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::iterator_base< container, content, reverse >::decrement().
|
inline |
The -= operator.
| n | A difference_type value to be subtracted from position of iterator |
this Definition at line 831 of file block_complex_long_double.hpp.
|
inline |
Comparison with const iterator.
| i | another iterator |
true or false according as this points to earlier element than i Definition at line 957 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::ccgsl_pointer, gsl::exception::GSL_EFAILED, gsl::block_complex_long_double::iterator_base< container, content, reverse >::position, gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse >::position, gsl::block_complex_long_double::iterator_base< container, content, reverse >::v, and gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse >::v.
|
inline |
Comparison with non-const iterator.
| i | another iterator |
true or false according as this points to earlier element than i Definition at line 922 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::ccgsl_pointer, gsl::exception::GSL_EFAILED, gsl::block_complex_long_double::iterator_base< container, content, reverse >::position, gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse >::position, gsl::block_complex_long_double::iterator_base< container, content, reverse >::v, and gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse >::v.
|
inline |
We can assign one output iterator from another.
| i | The iterator to copy |
Definition at line 765 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::iterator_base< container, content, reverse >::position, and gsl::block_complex_long_double::iterator_base< container, content, reverse >::v.
|
inline |
Comparison with const iterator.
| i | another iterator |
true or false according as this points to same element as i Definition at line 941 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::iterator_base< container, content, reverse >::position, gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse >::position, gsl::block_complex_long_double::iterator_base< container, content, reverse >::v, and gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse >::v.
|
inline |
Comparison with non-const iterator.
| i | another iterator |
true or false according as this points to same element as i Definition at line 906 of file block_complex_long_double.hpp.
References gsl::block_complex_long_double::iterator_base< container, content, reverse >::position, gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse >::position, gsl::block_complex_long_double::iterator_base< container, content, reverse >::v, and gsl::block_complex_long_double::iterator_base< block_complex_long_double const, long double, reverse >::v.
Referenced by gsl::block_complex_long_double::const_iterator_t< reverse >::operator!=().
|
friend |
Definition at line 973 of file block_complex_long_double.hpp.