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


Public Types | |
| typedef iterator_base< vector_uintconst, unsignedint, reverse_t >::difference_type | difference_type |
| Difference type. More... | |
Public Types inherited from gsl::vector_uint::iterator_base< vector_uint const, unsigned int, reverse_t > | |
| typedef std::random_access_iterator_tag | iterator_category |
| An iterator must have an iterator category. More... | |
| typedef unsigned int | 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_t > & | operator= (const_iterator_t< reverse_t > const &i) |
| We can assign one output iterator from another. More... | |
| const_iterator_t< reverse_t > & | operator++ () |
| The prefix ++ operator. More... | |
| const_iterator_t< reverse_t > | operator++ (int) |
| The postfix ++ operator. More... | |
| const_iterator_t< reverse_t > & | operator-- () |
| The prefix – operator. More... | |
| const_iterator_t< reverse_t > | operator-- (int) |
| The postfix – operator. More... | |
| const_iterator_t< reverse_t > & | operator+= (difference_type const n) |
| The += operator. More... | |
| const_iterator_t< reverse_t > & | operator-= (difference_type const n) |
| The -= operator. More... | |
| const_iterator_t< reverse_t > | operator+ (difference_type const n) const |
| The + operator. More... | |
| const_iterator_t< reverse_t > | operator- (difference_type const n) const |
| The - operator: subtract distance from iterator. More... | |
| difference_type | operator- (const_iterator_t< reverse_t > const &i) const |
| The - operator: find distance between two iterators. More... | |
| difference_type | operator- (iterator_t< reverse_t > const &i) const |
| The - operator: find distance between two iterators. More... | |
| const_iterator_t () | |
| The default constructor. More... | |
| const_iterator_t (iterator_t< reverse_t > const &i) | |
| A copy constructor. More... | |
| bool | operator== (iterator_t< reverse_t > const &i) const |
| Comparison with non-const iterator. More... | |
| bool | operator!= (iterator_t< reverse_t > const &i) const |
| Comparison with non-const iterator. More... | |
| bool | operator< (iterator_t< reverse_t > const &i) const |
| Comparison with non-const iterator. 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... | |
| bool | operator< (const_iterator_t< reverse_t > const &i) const |
| Comparison with const iterator. More... | |
Public Member Functions inherited from gsl::vector_uint::iterator_base< vector_uint const, unsigned int, reverse_t > | |
| 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< vector_uint const, unsigned int, reverse_t > const &i) const |
| The - operator: find distance between two iterators. More... | |
| bool | operator== (iterator_base< vector_uint const, unsigned int, reverse_t > const &i) const |
| The == operator. More... | |
| bool | operator!= (iterator_base< vector_uint const, unsigned int, reverse_t > const &i) const |
| The != operator. More... | |
| bool | operator< (iterator_base< vector_uint const, unsigned int, reverse_t > const &i) const |
| The < operator is used to compare iterators. More... | |
Protected Member Functions | |
| const_iterator_t (vector_uint const *v, difference_type position) | |
| This constructor allows vector_uint to create non-default iterators. More... | |
Protected Member Functions inherited from gsl::vector_uint::iterator_base< vector_uint const, unsigned int, reverse_t > | |
| 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 (vector_uint const *v, difference_type position) | |
| This constructor allows vector_uint to create non-default iterators. More... | |
Friends | |
| class | vector_uint |
Additional Inherited Members | |
Protected Attributes inherited from gsl::vector_uint::iterator_base< vector_uint const, unsigned int, reverse_t > | |
| vector_uint const * | v |
| Store a pointer to a vector_uint we can iterate over: 0 if no vector_uint. More... | |
| difference_type | position |
| Mark position of iterator within vector_uint. More... | |
A class template for the const iterators.
Definition at line 835 of file vector_uint.hpp.
| typedef iterator_base<vector_uintconst,unsignedint,reverse_t>::difference_type gsl::vector_uint::const_iterator_t< reverse_t >::difference_type |
Difference type.
Definition at line 893 of file vector_uint.hpp.
|
inline |
The default constructor.
Definition at line 971 of file vector_uint.hpp.
|
inline |
A copy constructor.
| i | The non-const iterator to copy |
Definition at line 976 of file vector_uint.hpp.
References gsl::vector_uint::iterator_base< container, content, reverse_t >::position, and gsl::vector_uint::iterator_base< container, content, reverse_t >::v.
|
inlineprotected |
This constructor allows vector_uint to create non-default iterators.
| v | The vector_uint that creates this |
| position | The initial postion of the iterator |
Definition at line 1058 of file vector_uint.hpp.
|
inline |
Comparison with const iterator.
| i | another iterator |
false or true according as this points to same element as i Definition at line 1028 of file vector_uint.hpp.
|
inline |
Comparison with non-const iterator.
| i | another iterator |
false or true according as this points to same element as i Definition at line 993 of file vector_uint.hpp.
|
inline |
The + operator.
| n | A difference_type value to be added |
Definition at line 921 of file vector_uint.hpp.
References gsl::rstat::n().
|
inline |
|
inline |
|
inline |
The += operator.
| n | A difference_type value to be added to position of iterator |
this Definition at line 900 of file vector_uint.hpp.
References gsl::rstat::n().
|
inline |
The - operator: find distance between two iterators.
| i | A second iterator |
this and i Definition at line 943 of file vector_uint.hpp.
|
inline |
The - operator: subtract distance from iterator.
| n | A difference_type value to be subtracted |
Definition at line 933 of file vector_uint.hpp.
References gsl::rstat::n().
|
inline |
The - operator: find distance between two iterators.
| i | A second iterator |
this and i Definition at line 951 of file vector_uint.hpp.
References gsl::vector_uint::ccgsl_pointer, gsl::exception::GSL_EFAILED, gsl::multifit::nlinear::position(), gsl::vector_uint::iterator_base< container, content, reverse_t >::position, and gsl::vector_uint::iterator_base< container, content, reverse_t >::v.
|
inline |
|
inline |
|
inline |
The -= operator.
| n | A difference_type value to be subtracted from position of iterator |
this Definition at line 910 of file vector_uint.hpp.
References gsl::rstat::n().
|
inline |
Comparison with const iterator.
| i | another iterator |
true or false according as this points to earlier element than i Definition at line 1036 of file vector_uint.hpp.
References gsl::vector_uint::ccgsl_pointer, gsl::exception::GSL_EFAILED, gsl::multifit::nlinear::position(), gsl::vector_uint::iterator_base< container, content, reverse_t >::position, and gsl::vector_uint::iterator_base< container, content, reverse_t >::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 1001 of file vector_uint.hpp.
References gsl::vector_uint::ccgsl_pointer, gsl::exception::GSL_EFAILED, gsl::multifit::nlinear::position(), gsl::vector_uint::iterator_base< container, content, reverse_t >::position, and gsl::vector_uint::iterator_base< container, content, reverse_t >::v.
|
inline |
We can assign one output iterator from another.
| i | The iterator to copy |
Definition at line 844 of file vector_uint.hpp.
References gsl::vector_uint::iterator_base< container, content, reverse_t >::position, and gsl::vector_uint::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 1020 of file vector_uint.hpp.
References gsl::multifit::nlinear::position(), gsl::vector_uint::iterator_base< container, content, reverse_t >::position, and gsl::vector_uint::iterator_base< container, content, reverse_t >::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 985 of file vector_uint.hpp.
References gsl::multifit::nlinear::position(), gsl::vector_uint::iterator_base< container, content, reverse_t >::position, and gsl::vector_uint::iterator_base< container, content, reverse_t >::v.
|
friend |
Definition at line 1052 of file vector_uint.hpp.