Commit 96e9e4d5 authored by Stefan Behnel's avatar Stefan Behnel

merge 0.20.x branch into master

parents b5a7028a 0d7a0c2b
cdef extern from "<list>" namespace "std" nogil:
cdef cppclass list[T]:
cppclass iterator:
iterator()
iterator(iterator &)
T& operator*()
iterator operator++()
iterator operator--()
bint operator==(iterator)
bint operator!=(iterator)
cppclass reverse_iterator:
reverse_iterator()
reverse_iterator(iterator &)
T& operator*()
iterator operator++()
iterator operator--()
reverse_iterator operator++()
reverse_iterator operator--()
bint operator==(reverse_iterator)
bint operator!=(reverse_iterator)
#cppclass const_iterator(iterator):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment