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 4495 of file SyFiPYTHON_wrap.cxx.
typedef int swig::SwigPySequence_InputIterator< T, Reference >::difference_type |
Definition at line 4503 of file SyFiPYTHON_wrap.cxx.
typedef std::random_access_iterator_tag swig::SwigPySequence_InputIterator< T, Reference >::iterator_category |
Definition at line 4499 of file SyFiPYTHON_wrap.cxx.
typedef T* swig::SwigPySequence_InputIterator< T, Reference >::pointer |
Definition at line 4502 of file SyFiPYTHON_wrap.cxx.
typedef Reference swig::SwigPySequence_InputIterator< T, Reference >::reference |
Definition at line 4500 of file SyFiPYTHON_wrap.cxx.
typedef SwigPySequence_InputIterator<T, Reference > swig::SwigPySequence_InputIterator< T, Reference >::self |
Definition at line 4497 of file SyFiPYTHON_wrap.cxx.
typedef T swig::SwigPySequence_InputIterator< T, Reference >::value_type |
Definition at line 4501 of file SyFiPYTHON_wrap.cxx.
swig::SwigPySequence_InputIterator< T, Reference >::SwigPySequence_InputIterator | ( | ) | [inline] |
Definition at line 4505 of file SyFiPYTHON_wrap.cxx.
{ }
swig::SwigPySequence_InputIterator< T, Reference >::SwigPySequence_InputIterator | ( | PyObject * | seq, |
int | index | ||
) | [inline] |
Definition at line 4509 of file SyFiPYTHON_wrap.cxx.
bool swig::SwigPySequence_InputIterator< T, Reference >::operator!= | ( | const self & | ri | ) | const [inline] |
Definition at line 4529 of file SyFiPYTHON_wrap.cxx.
{ return !(operator==(ri)); }
reference swig::SwigPySequence_InputIterator< T, Reference >::operator* | ( | ) | const [inline] |
Definition at line 4514 of file SyFiPYTHON_wrap.cxx.
self swig::SwigPySequence_InputIterator< T, Reference >::operator+ | ( | difference_type | n | ) | const [inline] |
self& swig::SwigPySequence_InputIterator< T, Reference >::operator++ | ( | ) | [inline] |
Definition at line 4534 of file SyFiPYTHON_wrap.cxx.
{ ++_index; return *this; }
self& swig::SwigPySequence_InputIterator< T, Reference >::operator+= | ( | difference_type | n | ) | [inline] |
Definition at line 4546 of file SyFiPYTHON_wrap.cxx.
References test::n.
self swig::SwigPySequence_InputIterator< T, Reference >::operator- | ( | difference_type | n | ) | const [inline] |
difference_type swig::SwigPySequence_InputIterator< T, Reference >::operator- | ( | const self & | ri | ) | const [inline] |
Definition at line 4568 of file SyFiPYTHON_wrap.cxx.
{ return _index - ri._index; }
self& swig::SwigPySequence_InputIterator< T, Reference >::operator-- | ( | ) | [inline] |
Definition at line 4540 of file SyFiPYTHON_wrap.cxx.
{ --_index; return *this; }
self& swig::SwigPySequence_InputIterator< T, Reference >::operator-= | ( | difference_type | n | ) | [inline] |
Definition at line 4557 of file SyFiPYTHON_wrap.cxx.
References test::n.
SwigPySequence_ArrowProxy<T> swig::SwigPySequence_InputIterator< T, Reference >::operator-> | ( | ) | const [inline] |
Definition at line 4520 of file SyFiPYTHON_wrap.cxx.
{ return SwigPySequence_ArrowProxy<T>(operator*()); }
bool swig::SwigPySequence_InputIterator< T, Reference >::operator< | ( | const self & | ri | ) | const [inline] |
Definition at line 4573 of file SyFiPYTHON_wrap.cxx.
{ return _index < ri._index; }
bool swig::SwigPySequence_InputIterator< T, Reference >::operator== | ( | const self & | ri | ) | const [inline] |
Definition at line 4524 of file SyFiPYTHON_wrap.cxx.
reference swig::SwigPySequence_InputIterator< T, Reference >::operator[] | ( | difference_type | n | ) | const [inline] |
difference_type swig::SwigPySequence_InputIterator< T, Reference >::_index [private] |
Definition at line 4586 of file SyFiPYTHON_wrap.cxx.
PyObject* swig::SwigPySequence_InputIterator< T, Reference >::_seq [private] |
Definition at line 4585 of file SyFiPYTHON_wrap.cxx.