|
| iterator (self) |
| iterator(IntVector self) -> SwigPyIterator
|
|
| __iter__ (self) |
|
| __nonzero__ (self) |
| nonzero(IntVector self) -> bool
|
|
| __bool__ (self) |
| bool(IntVector self) -> bool
|
|
| __len__ (self) |
| len(IntVector self) -> std::vector< int >::size_type
|
|
| __getslice__ (self, i, j) |
| getslice(IntVector self, std::vector< int >::difference_type i, std::vector< int >::difference_type j) -> IntVector
|
|
| __setslice__ (self, *args) |
| setslice(IntVector self, std::vector< int >::difference_type i, std::vector< int >::difference_type j)
|
|
| __delslice__ (self, i, j) |
| delslice(IntVector self, std::vector< int >::difference_type i, std::vector< int >::difference_type j)
|
|
| __delitem__ (self, *args) |
| delitem(IntVector self, std::vector< int >::difference_type i)
|
|
| __getitem__ (self, *args) |
| getitem(IntVector self, SWIGPY_SLICEOBJECT * slice) -> IntVector
|
|
| __setitem__ (self, *args) |
| setitem(IntVector self, SWIGPY_SLICEOBJECT * slice, IntVector v)
|
|
| pop (self) |
| pop(IntVector self) -> std::vector< int >::value_type
|
|
| append (self, x) |
| append(IntVector self, std::vector< int >::value_type const & x)
|
|
| empty (self) |
| empty(IntVector self) -> bool
|
|
| size (self) |
| size(IntVector self) -> std::vector< int >::size_type
|
|
| swap (self, v) |
| swap(IntVector self, IntVector v)
|
|
| begin (self) |
| begin(IntVector self) -> std::vector< int >::iterator
|
|
| end (self) |
| end(IntVector self) -> std::vector< int >::iterator
|
|
| rbegin (self) |
| rbegin(IntVector self) -> std::vector< int >::reverse_iterator
|
|
| rend (self) |
| rend(IntVector self) -> std::vector< int >::reverse_iterator
|
|
| clear (self) |
| clear(IntVector self)
|
|
| get_allocator (self) |
| get_allocator(IntVector self) -> std::vector< int >::allocator_type
|
|
| pop_back (self) |
| pop_back(IntVector self)
|
|
| erase (self, *args) |
| erase(IntVector self, std::vector< int >::iterator pos) -> std::vector< int >::iterator
|
|
| __init__ (self, *args) |
| init(IntVector self) -> IntVector init(IntVector self, IntVector other) -> IntVector
|
|
| push_back (self, x) |
| push_back(IntVector self, std::vector< int >::value_type const & x)
|
|
| front (self) |
| front(IntVector self) -> std::vector< int >::value_type const &
|
|
| back (self) |
| back(IntVector self) -> std::vector< int >::value_type const &
|
|
| assign (self, n, x) |
| assign(IntVector self, std::vector< int >::size_type n, std::vector< int >::value_type const & x)
|
|
| resize (self, *args) |
| resize(IntVector self, std::vector< int >::size_type new_size)
|
|
| insert (self, *args) |
| insert(IntVector self, std::vector< int >::iterator pos, std::vector< int >::value_type const & x) -> std::vector< int >::iterator
|
|
| reserve (self, n) |
| reserve(IntVector self, std::vector< int >::size_type n)
|
|
| capacity (self) |
| capacity(IntVector self) -> std::vector< int >::size_type
|
|
Proxy of C++ std::vector< int > class.
Definition at line 227 of file conopt.py.
conopt.IntVector.__init__ |
( |
| self, |
|
|
* | args ) |
init(IntVector self) -> IntVector init(IntVector self, IntVector other) -> IntVector
Parameters
other: std::vector< int > const &
init(IntVector self, std::vector< int >::size_type size) -> IntVector
Parameters
size: std::vector< int >::size_type
init(IntVector self, std::vector< int >::size_type size, std::vector< int >::value_type const & value) -> IntVector
Parameters
size: std::vector< int >::size_type value: std::vector< int >::value_type const &
Definition at line 434 of file conopt.py.
conopt.IntVector.__setslice__ |
( |
| self, |
|
|
* | args ) |
setslice(IntVector self, std::vector< int >::difference_type i, std::vector< int >::difference_type j)
Parameters
i: std::vector< int >::difference_type j: std::vector< int >::difference_type
setslice(IntVector self, std::vector< int >::difference_type i, std::vector< int >::difference_type j, IntVector v)
Parameters
i: std::vector< int >::difference_type j: std::vector< int >::difference_type v: std::vector< int,std::allocator< int > > const &
Definition at line 263 of file conopt.py.
conopt.IntVector.__delitem__ |
( |
| self, |
|
|
* | args ) |
delitem(IntVector self, std::vector< int >::difference_type i)
Parameters
i: std::vector< int >::difference_type
delitem(IntVector self, SWIGPY_SLICEOBJECT * slice)
Parameters
slice: SWIGPY_SLICEOBJECT *
Definition at line 295 of file conopt.py.
conopt.IntVector.__getitem__ |
( |
| self, |
|
|
* | args ) |
getitem(IntVector self, SWIGPY_SLICEOBJECT * slice) -> IntVector
Parameters
slice: SWIGPY_SLICEOBJECT *
getitem(IntVector self, std::vector< int >::difference_type i) -> std::vector< int >::value_type const &
Parameters
i: std::vector< int >::difference_type
Definition at line 312 of file conopt.py.
conopt.IntVector.__setitem__ |
( |
| self, |
|
|
* | args ) |
setitem(IntVector self, SWIGPY_SLICEOBJECT * slice, IntVector v)
Parameters
slice: SWIGPY_SLICEOBJECT * v: std::vector< int,std::allocator< int > > const &
setitem(IntVector self, SWIGPY_SLICEOBJECT * slice)
Parameters
slice: SWIGPY_SLICEOBJECT *
setitem(IntVector self, std::vector< int >::difference_type i, std::vector< int >::value_type const & x)
Parameters
i: std::vector< int >::difference_type x: std::vector< int >::value_type const &
Definition at line 329 of file conopt.py.
conopt.IntVector.erase |
( |
| self, |
|
|
* | args ) |
erase(IntVector self, std::vector< int >::iterator pos) -> std::vector< int >::iterator
Parameters
pos: std::vector< int >::iterator
erase(IntVector self, std::vector< int >::iterator first, std::vector< int >::iterator last) -> std::vector< int >::iterator
Parameters
first: std::vector< int >::iterator last: std::vector< int >::iterator
Definition at line 416 of file conopt.py.
conopt.IntVector.resize |
( |
| self, |
|
|
* | args ) |
resize(IntVector self, std::vector< int >::size_type new_size)
Parameters
new_size: std::vector< int >::size_type
resize(IntVector self, std::vector< int >::size_type new_size, std::vector< int >::value_type const & x)
Parameters
new_size: std::vector< int >::size_type x: std::vector< int >::value_type const &
Definition at line 490 of file conopt.py.
conopt.IntVector.insert |
( |
| self, |
|
|
* | args ) |
insert(IntVector self, std::vector< int >::iterator pos, std::vector< int >::value_type const & x) -> std::vector< int >::iterator
Parameters
pos: std::vector< int >::iterator x: std::vector< int >::value_type const &
insert(IntVector self, std::vector< int >::iterator pos, std::vector< int >::size_type n, std::vector< int >::value_type const & x)
Parameters
pos: std::vector< int >::iterator n: std::vector< int >::size_type x: std::vector< int >::value_type const &
Definition at line 508 of file conopt.py.