SyFi 0.3
|
Public Types | |
typedef SwigPySequence_InputIterator < T, Reference > | self |
typedef std::random_access_iterator_tag | iterator_category |
typedef Reference | reference |
typedef T | value_type |
typedef T * | pointer |
typedef int | difference_type |
Public Member Functions | |
SwigPySequence_InputIterator () | |
SwigPySequence_InputIterator (PyObject *seq, int index) | |
reference | operator* () const |
SwigPySequence_ArrowProxy< T > | operator-> () const |
bool | operator== (const self &ri) const |
bool | operator!= (const self &ri) const |
self & | operator++ () |
self & | operator-- () |
self & | operator+= (difference_type n) |
self | operator+ (difference_type n) const |
self & | operator-= (difference_type n) |
self | operator- (difference_type n) const |
difference_type | operator- (const self &ri) const |
bool | operator< (const self &ri) const |
reference | operator[] (difference_type n) const |
Private Attributes | |
PyObject * | _seq |
difference_type | _index |
Definition at line 4207 of file SyFi_wrap.cc.
typedef int swig::SwigPySequence_InputIterator< T, Reference >::difference_type |
Definition at line 4215 of file SyFi_wrap.cc.
typedef std::random_access_iterator_tag swig::SwigPySequence_InputIterator< T, Reference >::iterator_category |
Definition at line 4211 of file SyFi_wrap.cc.
typedef T* swig::SwigPySequence_InputIterator< T, Reference >::pointer |
Definition at line 4214 of file SyFi_wrap.cc.
typedef Reference swig::SwigPySequence_InputIterator< T, Reference >::reference |
Definition at line 4212 of file SyFi_wrap.cc.
typedef SwigPySequence_InputIterator<T, Reference > swig::SwigPySequence_InputIterator< T, Reference >::self |
Definition at line 4209 of file SyFi_wrap.cc.
typedef T swig::SwigPySequence_InputIterator< T, Reference >::value_type |
Definition at line 4213 of file SyFi_wrap.cc.
swig::SwigPySequence_InputIterator< T, Reference >::SwigPySequence_InputIterator | ( | ) | [inline] |
Definition at line 4217 of file SyFi_wrap.cc.
{ }
swig::SwigPySequence_InputIterator< T, Reference >::SwigPySequence_InputIterator | ( | PyObject * | seq, |
int | index | ||
) | [inline] |
Definition at line 4221 of file SyFi_wrap.cc.
bool swig::SwigPySequence_InputIterator< T, Reference >::operator!= | ( | const self & | ri | ) | const [inline] |
Definition at line 4241 of file SyFi_wrap.cc.
{ return !(operator==(ri)); }
reference swig::SwigPySequence_InputIterator< T, Reference >::operator* | ( | ) | const [inline] |
Definition at line 4226 of file SyFi_wrap.cc.
self swig::SwigPySequence_InputIterator< T, Reference >::operator+ | ( | difference_type | n | ) | const [inline] |
self& swig::SwigPySequence_InputIterator< T, Reference >::operator++ | ( | ) | [inline] |
Definition at line 4246 of file SyFi_wrap.cc.
{ ++_index; return *this; }
self& swig::SwigPySequence_InputIterator< T, Reference >::operator+= | ( | difference_type | n | ) | [inline] |
difference_type swig::SwigPySequence_InputIterator< T, Reference >::operator- | ( | const self & | ri | ) | const [inline] |
Definition at line 4280 of file SyFi_wrap.cc.
{ return _index - ri._index; }
self swig::SwigPySequence_InputIterator< T, Reference >::operator- | ( | difference_type | n | ) | const [inline] |
self& swig::SwigPySequence_InputIterator< T, Reference >::operator-- | ( | ) | [inline] |
Definition at line 4252 of file SyFi_wrap.cc.
{ --_index; return *this; }
self& swig::SwigPySequence_InputIterator< T, Reference >::operator-= | ( | difference_type | n | ) | [inline] |
SwigPySequence_ArrowProxy<T> swig::SwigPySequence_InputIterator< T, Reference >::operator-> | ( | ) | const [inline] |
Definition at line 4232 of file SyFi_wrap.cc.
{ return SwigPySequence_ArrowProxy<T>(operator*()); }
bool swig::SwigPySequence_InputIterator< T, Reference >::operator< | ( | const self & | ri | ) | const [inline] |
Definition at line 4285 of file SyFi_wrap.cc.
{ return _index < ri._index; }
bool swig::SwigPySequence_InputIterator< T, Reference >::operator== | ( | const self & | ri | ) | const [inline] |
Definition at line 4236 of file SyFi_wrap.cc.
reference swig::SwigPySequence_InputIterator< T, Reference >::operator[] | ( | difference_type | n | ) | const [inline] |
difference_type swig::SwigPySequence_InputIterator< T, Reference >::_index [private] |
Definition at line 4298 of file SyFi_wrap.cc.
PyObject* swig::SwigPySequence_InputIterator< T, Reference >::_seq [private] |
Definition at line 4297 of file SyFi_wrap.cc.