KiCad Pcbnew Python Scripting
Public Member Functions | Properties | List of all members
pcbnew.intVector Class Reference
Inheritance diagram for pcbnew.intVector:
Inheritance graph
[legend]

Public Member Functions

"swig::SwigPyIterator *" iterator (self)
 
def __iter__ (self)
 
"bool" __nonzero__ (self)
 
"bool" __bool__ (self)
 
"std::vector< int >::size_type" __len__ (self)
 
"std::vector< int,std::allocator< int > > *" __getslice__ (self, "std::vector< int >::difference_type" i, "std::vector< int >::difference_type" j)
 
"void" __setslice__ (self, *args)
 
"void" __delslice__ (self, "std::vector< int >::difference_type" i, "std::vector< int >::difference_type" j)
 
"void" __delitem__ (self, *args)
 
"std::vector< int >::value_type const &" __getitem__ (self, *args)
 
"void" __setitem__ (self, *args)
 
"std::vector< int >::value_type" pop (self)
 
"void" append (self, "std::vector< int >::value_type const &" x)
 
"bool" empty (self)
 
"std::vector< int >::size_type" size (self)
 
"void" swap (self, "intVector" v)
 
"std::vector< int >::iteratorbegin (self)
 
"std::vector< int >::iteratorend (self)
 
"std::vector< int >::reverse_iterator" rbegin (self)
 
"std::vector< int >::reverse_iterator" rend (self)
 
"void" clear (self)
 
"std::vector< int >::allocator_type" get_allocator (self)
 
"void" pop_back (self)
 
"std::vector< int >::iteratorerase (self, *args)
 
def __init__ (self, *args)
 
"void" push_back (self, "std::vector< int >::value_type const &" x)
 
"std::vector< int >::value_type const &" front (self)
 
"std::vector< int >::value_type const &" back (self)
 
"void" assign (self, "std::vector< int >::size_type" n, "std::vector< int >::value_type const &" x)
 
"void" resize (self, *args)
 
"void" insert (self, *args)
 
"void" reserve (self, "std::vector< int >::size_type" n)
 
"std::vector< int >::size_type" capacity (self)
 

Properties

 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
 

Detailed Description

Proxy of C++ std::vector< int > class.

Definition at line 3048 of file pcbnew.py.

Constructor & Destructor Documentation

◆ __init__()

def pcbnew.intVector.__init__ (   self,
args 
)
    __init__(intVector self) -> intVector
    __init__(intVector self, intVector other) -> intVector
    __init__(intVector self, std::vector< int >::size_type size) -> intVector
    __init__(intVector self, std::vector< int >::size_type size, std::vector< int >::value_type const & value) -> intVector

Definition at line 3164 of file pcbnew.py.

Here is the caller graph for this function:

Member Function Documentation

◆ __bool__()

"bool" pcbnew.intVector.__bool__ (   self)
__bool__(intVector self) -> bool

Definition at line 3064 of file pcbnew.py.

◆ __delitem__()

"void" pcbnew.intVector.__delitem__ (   self,
args 
)
    __delitem__(intVector self, std::vector< int >::difference_type i)
    __delitem__(intVector self, PySliceObject * slice)

Definition at line 3087 of file pcbnew.py.

Here is the caller graph for this function:

◆ __delslice__()

"void" pcbnew.intVector.__delslice__ (   self,
"std::vector< int >::difference_type"  i,
"std::vector< int >::difference_type"  j 
)
__delslice__(intVector self, std::vector< int >::difference_type i, std::vector< int >::difference_type j)

Definition at line 3083 of file pcbnew.py.

◆ __getitem__()

"std.vector< int >.value_type const &" pcbnew.intVector.__getitem__ (   self,
args 
)
    __getitem__(intVector self, PySliceObject * slice) -> intVector
    __getitem__(intVector self, std::vector< int >::difference_type i) -> std::vector< int >::value_type const &

Definition at line 3094 of file pcbnew.py.

Here is the caller graph for this function:

◆ __getslice__()

"std.vector< int,std.allocator< int > > *" pcbnew.intVector.__getslice__ (   self,
"std::vector< int >::difference_type"  i,
"std::vector< int >::difference_type"  j 
)
__getslice__(intVector self, std::vector< int >::difference_type i, std::vector< int >::difference_type j) -> intVector

Definition at line 3072 of file pcbnew.py.

◆ __iter__()

def pcbnew.intVector.__iter__ (   self)

Definition at line 3057 of file pcbnew.py.

◆ __len__()

"std.vector< int >.size_type" pcbnew.intVector.__len__ (   self)
__len__(intVector self) -> std::vector< int >::size_type

Definition at line 3068 of file pcbnew.py.

◆ __nonzero__()

"bool" pcbnew.intVector.__nonzero__ (   self)
__nonzero__(intVector self) -> bool

Definition at line 3060 of file pcbnew.py.

◆ __setitem__()

"void" pcbnew.intVector.__setitem__ (   self,
args 
)
    __setitem__(intVector self, PySliceObject * slice, intVector v)
    __setitem__(intVector self, PySliceObject * slice)
    __setitem__(intVector self, std::vector< int >::difference_type i, std::vector< int >::value_type const & x)

Definition at line 3101 of file pcbnew.py.

Here is the caller graph for this function:

◆ __setslice__()

"void" pcbnew.intVector.__setslice__ (   self,
args 
)
    __setslice__(intVector self, std::vector< int >::difference_type i, std::vector< int >::difference_type j)
    __setslice__(intVector self, std::vector< int >::difference_type i, std::vector< int >::difference_type j, intVector v)

Definition at line 3076 of file pcbnew.py.

Here is the caller graph for this function:

◆ append()

"void" pcbnew.intVector.append (   self,
"std::vector< int >::value_type const &"  x 
)
append(intVector self, std::vector< int >::value_type const & x)

Definition at line 3113 of file pcbnew.py.

◆ assign()

"void" pcbnew.intVector.assign (   self,
"std::vector< int >::size_type"  n,
"std::vector< int >::value_type const &"  x 
)
assign(intVector self, std::vector< int >::size_type n, std::vector< int >::value_type const & x)

Definition at line 3185 of file pcbnew.py.

◆ back()

"std.vector< int >.value_type const &" pcbnew.intVector.back (   self)
back(intVector self) -> std::vector< int >::value_type const &

Definition at line 3181 of file pcbnew.py.

◆ begin()

"std.vector< int >.iterator" pcbnew.intVector.begin (   self)
begin(intVector self) -> std::vector< int >::iterator

Definition at line 3129 of file pcbnew.py.

◆ capacity()

"std.vector< int >.size_type" pcbnew.intVector.capacity (   self)
capacity(intVector self) -> std::vector< int >::size_type

Definition at line 3207 of file pcbnew.py.

◆ clear()

"void" pcbnew.intVector.clear (   self)
clear(intVector self)

Definition at line 3145 of file pcbnew.py.

◆ empty()

"bool" pcbnew.intVector.empty (   self)
empty(intVector self) -> bool

Definition at line 3117 of file pcbnew.py.

◆ end()

"std.vector< int >.iterator" pcbnew.intVector.end (   self)
end(intVector self) -> std::vector< int >::iterator

Definition at line 3133 of file pcbnew.py.

◆ erase()

"std.vector< int >.iterator" pcbnew.intVector.erase (   self,
args 
)
    erase(intVector self, std::vector< int >::iterator pos) -> std::vector< int >::iterator
    erase(intVector self, std::vector< int >::iterator first, std::vector< int >::iterator last) -> std::vector< int >::iterator

Definition at line 3157 of file pcbnew.py.

Here is the caller graph for this function:

◆ front()

"std.vector< int >.value_type const &" pcbnew.intVector.front (   self)
front(intVector self) -> std::vector< int >::value_type const &

Definition at line 3177 of file pcbnew.py.

◆ get_allocator()

"std.vector< int >.allocator_type" pcbnew.intVector.get_allocator (   self)
get_allocator(intVector self) -> std::vector< int >::allocator_type

Definition at line 3149 of file pcbnew.py.

◆ insert()

"void" pcbnew.intVector.insert (   self,
args 
)
    insert(intVector self, std::vector< int >::iterator pos, std::vector< int >::value_type const & x) -> std::vector< int >::iterator
    insert(intVector self, std::vector< int >::iterator pos, std::vector< int >::size_type n, std::vector< int >::value_type const & x)

Definition at line 3196 of file pcbnew.py.

Here is the caller graph for this function:

◆ iterator()

"swig.SwigPyIterator *" pcbnew.intVector.iterator (   self)
iterator(intVector self) -> SwigPyIterator

Definition at line 3054 of file pcbnew.py.

Here is the caller graph for this function:

◆ pop()

"std.vector< int >.value_type" pcbnew.intVector.pop (   self)
pop(intVector self) -> std::vector< int >::value_type

Definition at line 3109 of file pcbnew.py.

◆ pop_back()

"void" pcbnew.intVector.pop_back (   self)
pop_back(intVector self)

Definition at line 3153 of file pcbnew.py.

◆ push_back()

"void" pcbnew.intVector.push_back (   self,
"std::vector< int >::value_type const &"  x 
)
push_back(intVector self, std::vector< int >::value_type const & x)

Definition at line 3173 of file pcbnew.py.

◆ rbegin()

"std.vector< int >.reverse_iterator" pcbnew.intVector.rbegin (   self)
rbegin(intVector self) -> std::vector< int >::reverse_iterator

Definition at line 3137 of file pcbnew.py.

◆ rend()

"std.vector< int >.reverse_iterator" pcbnew.intVector.rend (   self)
rend(intVector self) -> std::vector< int >::reverse_iterator

Definition at line 3141 of file pcbnew.py.

◆ reserve()

"void" pcbnew.intVector.reserve (   self,
"std::vector< int >::size_type"  n 
)
reserve(intVector self, std::vector< int >::size_type n)

Definition at line 3203 of file pcbnew.py.

◆ resize()

"void" pcbnew.intVector.resize (   self,
args 
)
    resize(intVector self, std::vector< int >::size_type new_size)
    resize(intVector self, std::vector< int >::size_type new_size, std::vector< int >::value_type const & x)

Definition at line 3189 of file pcbnew.py.

Here is the caller graph for this function:

◆ size()

"std.vector< int >.size_type" pcbnew.intVector.size (   self)
size(intVector self) -> std::vector< int >::size_type

Definition at line 3121 of file pcbnew.py.

◆ swap()

"void" pcbnew.intVector.swap (   self,
"intVector"  v 
)
swap(intVector self, intVector v)

Definition at line 3125 of file pcbnew.py.

Property Documentation

◆ thisown

pcbnew.intVector.thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag")
static

Definition at line 3051 of file pcbnew.py.


The documentation for this class was generated from the following file: