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


Public Types | |
| typedef iterator_base< block_floatconst, float, reverse >::difference_type | difference_type |
| Difference type. More... | |
Public Types inherited from gsl::block_float::iterator_base< block_float const, float, reverse > | |
| typedef std::random_access_iterator_tag | iterator_category |
| An iterator must have an iterator category. More... | |
| typedef float | value_type |
| An iterator must have a value type. More... | |
| typedef value_type * | pointer |
| An iterator must have a pointer typea. More... | |
| typedef value_type & | reference |
| An iterator must have a reference 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_float::iterator_base< block_float const, float, 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_float const, float, reverse > const &i) const |
| The - operator: find distance between two iterators. More... | |
| bool | operator== (iterator_base< block_float const, float, reverse > const &i) const |
| The == operator. More... | |
| bool | operator!= (iterator_base< block_float const, float, reverse > const &i) const |
| The != operator. More... | |
| bool | operator< (iterator_base< block_float const, float, reverse > const &i) const |
| The < operator is used to compare iterators. More... | |
Protected Member Functions | |
| const_iterator_t (block_float const *v, difference_type position) | |
| This constructor allows block_float to create non-default iterators. More... | |
Protected Member Functions inherited from gsl::block_float::iterator_base< block_float const, float, reverse > | |
| void | increment () |
| Increment the iterator. More... | |
| void | decrement () |
| Decrement 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_float const *v, difference_type position) | |
| This constructor allows block_float to create non-default iterators. More... | |
Friends | |
| class | block_float |
Additional Inherited Members | |
Protected Attributes inherited from gsl::block_float::iterator_base< block_float const, float, reverse > | |
| block_float const * | v |
| Store a pointer to a block_float we can iterate over: 0 if no block_float. More... | |
| difference_type | position |
| Mark position of iterator within block_float. More... | |
A class template for the const iterators.
Definition at line 752 of file block_float.hpp.
| typedef iterator_base<block_floatconst,float,reverse>::difference_type gsl::block_float::const_iterator_t< reverse >::difference_type |
Difference type.
Definition at line 810 of file block_float.hpp.
|
inline |
The default constructor.
Definition at line 888 of file block_float.hpp.
|
inline |
A copy constructor.
| i | The non-const iterator to copy |
Definition at line 893 of file block_float.hpp.
References gsl::block_float::iterator_base< container, content, reverse >::position, and gsl::block_float::iterator_base< container, content, reverse >::v.
|
inlineprotected |
This constructor allows block_float to create non-default iterators.
| v | The block_float that creates this |
| position | The initial postion of the iterator |
Definition at line 975 of file block_float.hpp.
|
inline |
Comparison with const iterator.
| i | another iterator |
false or true according as this points to same element as i Definition at line 945 of file block_float.hpp.
References gsl::block_float::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 910 of file block_float.hpp.
References gsl::block_float::const_iterator_t< reverse >::operator==().
|
inline |
The + operator.
| n | A difference_type value to be added |
Definition at line 838 of file block_float.hpp.
References gsl::rstat::n().
|
inline |
The prefix ++ operator.
this Definition at line 772 of file block_float.hpp.
References gsl::block_float::iterator_base< container, content, reverse >::increment().
|
inline |
The postfix ++ operator.
this Definition at line 780 of file block_float.hpp.
References gsl::block_float::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 817 of file block_float.hpp.
References gsl::block_float::iterator_base< block_float const, float, reverse >::shift().
|
inline |
The - operator: find distance between two iterators.
| i | A second iterator |
this and i Definition at line 860 of file block_float.hpp.
References gsl::block_float::iterator_base< container, content, reverse >::operator-().
|
inline |
The - operator: subtract distance from iterator.
| n | A difference_type value to be subtracted |
Definition at line 850 of file block_float.hpp.
References gsl::rstat::n().
|
inline |
The - operator: find distance between two iterators.
| i | A second iterator |
this and i Definition at line 868 of file block_float.hpp.
References gsl::block_float::ccgsl_pointer, gsl::exception::GSL_EFAILED, gsl::block_float::iterator_base< block_float const, float, reverse >::position, gsl::block_float::iterator_base< container, content, reverse >::position, gsl::block_float::iterator_base< container, content, reverse >::v, and gsl::block_float::iterator_base< block_float const, float, reverse >::v.
|
inline |
The prefix – operator.
this Definition at line 792 of file block_float.hpp.
References gsl::block_float::iterator_base< container, content, reverse >::decrement().
|
inline |
The postfix – operator.
this Definition at line 800 of file block_float.hpp.
References gsl::block_float::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 827 of file block_float.hpp.
References gsl::block_float::iterator_base< block_float const, float, reverse >::shift().
|
inline |
Comparison with const iterator.
| i | another iterator |
true or false according as this points to earlier element than i Definition at line 953 of file block_float.hpp.
References gsl::block_float::ccgsl_pointer, gsl::exception::GSL_EFAILED, gsl::block_float::iterator_base< block_float const, float, reverse >::position, gsl::block_float::iterator_base< container, content, reverse >::position, gsl::block_float::iterator_base< container, content, reverse >::v, and gsl::block_float::iterator_base< block_float const, float, 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 918 of file block_float.hpp.
References gsl::block_float::ccgsl_pointer, gsl::exception::GSL_EFAILED, gsl::block_float::iterator_base< block_float const, float, reverse >::position, gsl::block_float::iterator_base< container, content, reverse >::position, gsl::block_float::iterator_base< container, content, reverse >::v, and gsl::block_float::iterator_base< block_float const, float, reverse >::v.
|
inline |
We can assign one output iterator from another.
| i | The iterator to copy |
Definition at line 761 of file block_float.hpp.
References gsl::block_float::iterator_base< container, content, reverse >::position, and gsl::block_float::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 937 of file block_float.hpp.
References gsl::block_float::iterator_base< container, content, reverse >::position, gsl::block_float::iterator_base< block_float const, float, reverse >::position, gsl::block_float::iterator_base< container, content, reverse >::v, and gsl::block_float::iterator_base< block_float const, float, 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 902 of file block_float.hpp.
References gsl::block_float::iterator_base< container, content, reverse >::position, gsl::block_float::iterator_base< block_float const, float, reverse >::position, gsl::block_float::iterator_base< container, content, reverse >::v, and gsl::block_float::iterator_base< block_float const, float, reverse >::v.
Referenced by gsl::block_float::const_iterator_t< reverse >::operator!=().
|
friend |
Definition at line 969 of file block_float.hpp.