SyFi 0.3
|
Public Types | |
typedef OutIterator | out_iterator |
typedef ValueType | value_type |
typedef SwigPyIterator_T < out_iterator > | base |
typedef SwigPyIteratorOpen_T < OutIterator, ValueType, FromOper > | self_type |
Public Member Functions | |
SwigPyIteratorOpen_T (out_iterator curr, PyObject *seq) | |
PyObject * | value () const |
SwigPyIterator * | copy () const |
SwigPyIterator * | incr (size_t n=1) |
SwigPyIterator * | decr (size_t n=1) |
Public Attributes | |
FromOper | from |
Definition at line 4044 of file SyFi_wrap.cc.
typedef SwigPyIterator_T<out_iterator> swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::base |
Definition at line 4050 of file SyFi_wrap.cc.
typedef OutIterator swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::out_iterator |
Reimplemented from swig::SwigPyIterator_T< OutIterator >.
Definition at line 4048 of file SyFi_wrap.cc.
typedef SwigPyIteratorOpen_T<OutIterator, ValueType, FromOper> swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::self_type |
Reimplemented from swig::SwigPyIterator_T< OutIterator >.
Definition at line 4051 of file SyFi_wrap.cc.
typedef ValueType swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::value_type |
Reimplemented from swig::SwigPyIterator_T< OutIterator >.
Definition at line 4049 of file SyFi_wrap.cc.
swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::SwigPyIteratorOpen_T | ( | out_iterator | curr, |
PyObject * | seq | ||
) | [inline] |
Definition at line 4053 of file SyFi_wrap.cc.
: SwigPyIterator_T<OutIterator>(curr, seq) { }
SwigPyIterator* swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::copy | ( | ) | const [inline, virtual] |
Implements swig::SwigPyIterator.
Definition at line 4062 of file SyFi_wrap.cc.
{ return new self_type(*this); }
SwigPyIterator* swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::decr | ( | size_t | n = 1 | ) | [inline, virtual] |
Reimplemented from swig::SwigPyIterator.
Definition at line 4075 of file SyFi_wrap.cc.
References test::n.
{ while (n--) { --base::current; } return this; }
SwigPyIterator* swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::incr | ( | size_t | n = 1 | ) | [inline, virtual] |
Implements swig::SwigPyIterator.
Definition at line 4067 of file SyFi_wrap.cc.
References test::n.
{ while (n--) { ++base::current; } return this; }
PyObject* swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::value | ( | ) | const [inline, virtual] |
Implements swig::SwigPyIterator.
Definition at line 4058 of file SyFi_wrap.cc.
References swig::from().
{ return from(static_cast<const value_type&>(*(base::current))); }
FromOper swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::from |
Definition at line 4047 of file SyFi_wrap.cc.