|
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 4472 of file SyFiPYTHON_wrap.cxx.
| typedef SwigPyIterator_T<out_iterator> swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::base |
Definition at line 4478 of file SyFiPYTHON_wrap.cxx.
| typedef OutIterator swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::out_iterator |
Reimplemented from swig::SwigPyIterator_T< OutIterator >.
Definition at line 4476 of file SyFiPYTHON_wrap.cxx.
| typedef SwigPyIteratorOpen_T<OutIterator, ValueType, FromOper> swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::self_type |
Reimplemented from swig::SwigPyIterator_T< OutIterator >.
Definition at line 4479 of file SyFiPYTHON_wrap.cxx.
| typedef ValueType swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::value_type |
Reimplemented from swig::SwigPyIterator_T< OutIterator >.
Definition at line 4477 of file SyFiPYTHON_wrap.cxx.
| swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::SwigPyIteratorOpen_T | ( | out_iterator | curr, |
| PyObject * | seq | ||
| ) | [inline] |
Definition at line 4481 of file SyFiPYTHON_wrap.cxx.
: SwigPyIterator_T<OutIterator>(curr, seq)
{
}
| SwigPyIterator* swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::copy | ( | ) | const [inline, virtual] |
Implements swig::SwigPyIterator.
Definition at line 4490 of file SyFiPYTHON_wrap.cxx.
{
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 4503 of file SyFiPYTHON_wrap.cxx.
{
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 4495 of file SyFiPYTHON_wrap.cxx.
{
while (n--) {
++base::current;
}
return this;
}
| PyObject* swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::value | ( | ) | const [inline, virtual] |
Implements swig::SwigPyIterator.
Definition at line 4486 of file SyFiPYTHON_wrap.cxx.
References swig::from().
{
return from(static_cast<const value_type&>(*(base::current)));
}
| FromOper swig::SwigPyIteratorOpen_T< OutIterator, ValueType, FromOper >::from |
Definition at line 4475 of file SyFiPYTHON_wrap.cxx.