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

Public Member Functions

def iterator (self)
 
def __iter__ (self)
 
def __nonzero__ (self)
 
def __bool__ (self)
 
def __len__ (self)
 
def __getslice__ (self, i, j)
 
def __setslice__ (self, *args)
 
def __delslice__ (self, i, j)
 
def __delitem__ (self, *args)
 
def __getitem__ (self, *args)
 
def __setitem__ (self, *args)
 
def pop (self)
 
def append (self, x)
 
def empty (self)
 
def size (self)
 
def swap (self, v)
 
def begin (self)
 
def end (self)
 
def rbegin (self)
 
def rend (self)
 
def clear (self)
 
def get_allocator (self)
 
def pop_back (self)
 
def erase (self, *args)
 
def __init__ (self, *args)
 
def push_back (self, x)
 
def front (self)
 
def back (self)
 
def assign (self, n, x)
 
def resize (self, *args)
 
def insert (self, *args)
 
def reserve (self, n)
 
def capacity (self)
 

Properties

property 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< KIID > class.

Definition at line 969 of file pcbnew.py.

Constructor & Destructor Documentation

◆ __init__()

def pcbnew.KIID_VECT_LIST.__init__ (   self,
args 
)
    __init__(KIID_VECT_LIST self) -> KIID_VECT_LIST
    __init__(KIID_VECT_LIST self, KIID_VECT_LIST other) -> KIID_VECT_LIST
    __init__(KIID_VECT_LIST self, std::vector< KIID >::size_type size) -> KIID_VECT_LIST
    __init__(KIID_VECT_LIST self, std::vector< KIID >::size_type size, KIID value) -> KIID_VECT_LIST

Reimplemented in pcbnew.KIID_PATH.

Definition at line 1085 of file pcbnew.py.

Here is the caller graph for this function:

Member Function Documentation

◆ __bool__()

def pcbnew.KIID_VECT_LIST.__bool__ (   self)
__bool__(KIID_VECT_LIST self) -> bool

Definition at line 985 of file pcbnew.py.

◆ __delitem__()

def pcbnew.KIID_VECT_LIST.__delitem__ (   self,
args 
)
    __delitem__(KIID_VECT_LIST self, std::vector< KIID >::difference_type i)
    __delitem__(KIID_VECT_LIST self, SWIGPY_SLICEOBJECT * slice)

Definition at line 1008 of file pcbnew.py.

Here is the caller graph for this function:

◆ __delslice__()

def pcbnew.KIID_VECT_LIST.__delslice__ (   self,
  i,
  j 
)
__delslice__(KIID_VECT_LIST self, std::vector< KIID >::difference_type i, std::vector< KIID >::difference_type j)

Definition at line 1004 of file pcbnew.py.

◆ __getitem__()

def pcbnew.KIID_VECT_LIST.__getitem__ (   self,
args 
)
    __getitem__(KIID_VECT_LIST self, SWIGPY_SLICEOBJECT * slice) -> KIID_VECT_LIST
    __getitem__(KIID_VECT_LIST self, std::vector< KIID >::difference_type i) -> KIID

Definition at line 1015 of file pcbnew.py.

Here is the caller graph for this function:

◆ __getslice__()

def pcbnew.KIID_VECT_LIST.__getslice__ (   self,
  i,
  j 
)
__getslice__(KIID_VECT_LIST self, std::vector< KIID >::difference_type i, std::vector< KIID >::difference_type j) -> KIID_VECT_LIST

Definition at line 993 of file pcbnew.py.

◆ __iter__()

def pcbnew.KIID_VECT_LIST.__iter__ (   self)

Definition at line 978 of file pcbnew.py.

◆ __len__()

def pcbnew.KIID_VECT_LIST.__len__ (   self)
__len__(KIID_VECT_LIST self) -> std::vector< KIID >::size_type

Definition at line 989 of file pcbnew.py.

◆ __nonzero__()

def pcbnew.KIID_VECT_LIST.__nonzero__ (   self)
__nonzero__(KIID_VECT_LIST self) -> bool

Definition at line 981 of file pcbnew.py.

◆ __setitem__()

def pcbnew.KIID_VECT_LIST.__setitem__ (   self,
args 
)
    __setitem__(KIID_VECT_LIST self, SWIGPY_SLICEOBJECT * slice, KIID_VECT_LIST v)
    __setitem__(KIID_VECT_LIST self, SWIGPY_SLICEOBJECT * slice)
    __setitem__(KIID_VECT_LIST self, std::vector< KIID >::difference_type i, KIID x)

Definition at line 1022 of file pcbnew.py.

Here is the caller graph for this function:

◆ __setslice__()

def pcbnew.KIID_VECT_LIST.__setslice__ (   self,
args 
)
    __setslice__(KIID_VECT_LIST self, std::vector< KIID >::difference_type i, std::vector< KIID >::difference_type j)
    __setslice__(KIID_VECT_LIST self, std::vector< KIID >::difference_type i, std::vector< KIID >::difference_type j, KIID_VECT_LIST v)

Definition at line 997 of file pcbnew.py.

Here is the caller graph for this function:

◆ append()

def pcbnew.KIID_VECT_LIST.append (   self,
  x 
)
append(KIID_VECT_LIST self, KIID x)

Definition at line 1034 of file pcbnew.py.

◆ assign()

def pcbnew.KIID_VECT_LIST.assign (   self,
  n,
  x 
)
assign(KIID_VECT_LIST self, std::vector< KIID >::size_type n, KIID x)

Definition at line 1106 of file pcbnew.py.

◆ back()

def pcbnew.KIID_VECT_LIST.back (   self)
back(KIID_VECT_LIST self) -> KIID

Definition at line 1102 of file pcbnew.py.

◆ begin()

def pcbnew.KIID_VECT_LIST.begin (   self)
begin(KIID_VECT_LIST self) -> std::vector< KIID >::iterator

Definition at line 1050 of file pcbnew.py.

◆ capacity()

def pcbnew.KIID_VECT_LIST.capacity (   self)
capacity(KIID_VECT_LIST self) -> std::vector< KIID >::size_type

Definition at line 1128 of file pcbnew.py.

◆ clear()

def pcbnew.KIID_VECT_LIST.clear (   self)
clear(KIID_VECT_LIST self)

Definition at line 1066 of file pcbnew.py.

◆ empty()

def pcbnew.KIID_VECT_LIST.empty (   self)
empty(KIID_VECT_LIST self) -> bool

Definition at line 1038 of file pcbnew.py.

◆ end()

def pcbnew.KIID_VECT_LIST.end (   self)
end(KIID_VECT_LIST self) -> std::vector< KIID >::iterator

Definition at line 1054 of file pcbnew.py.

◆ erase()

def pcbnew.KIID_VECT_LIST.erase (   self,
args 
)
    erase(KIID_VECT_LIST self, std::vector< KIID >::iterator pos) -> std::vector< KIID >::iterator
    erase(KIID_VECT_LIST self, std::vector< KIID >::iterator first, std::vector< KIID >::iterator last) -> std::vector< KIID >::iterator

Definition at line 1078 of file pcbnew.py.

Here is the caller graph for this function:

◆ front()

def pcbnew.KIID_VECT_LIST.front (   self)
front(KIID_VECT_LIST self) -> KIID

Definition at line 1098 of file pcbnew.py.

◆ get_allocator()

def pcbnew.KIID_VECT_LIST.get_allocator (   self)
get_allocator(KIID_VECT_LIST self) -> std::vector< KIID >::allocator_type

Definition at line 1070 of file pcbnew.py.

◆ insert()

def pcbnew.KIID_VECT_LIST.insert (   self,
args 
)
    insert(KIID_VECT_LIST self, std::vector< KIID >::iterator pos, KIID x) -> std::vector< KIID >::iterator
    insert(KIID_VECT_LIST self, std::vector< KIID >::iterator pos, std::vector< KIID >::size_type n, KIID x)

Definition at line 1117 of file pcbnew.py.

Here is the caller graph for this function:

◆ iterator()

def pcbnew.KIID_VECT_LIST.iterator (   self)
iterator(KIID_VECT_LIST self) -> SwigPyIterator

Definition at line 975 of file pcbnew.py.

Here is the caller graph for this function:

◆ pop()

def pcbnew.KIID_VECT_LIST.pop (   self)
pop(KIID_VECT_LIST self) -> KIID

Definition at line 1030 of file pcbnew.py.

◆ pop_back()

def pcbnew.KIID_VECT_LIST.pop_back (   self)
pop_back(KIID_VECT_LIST self)

Definition at line 1074 of file pcbnew.py.

◆ push_back()

def pcbnew.KIID_VECT_LIST.push_back (   self,
  x 
)
push_back(KIID_VECT_LIST self, KIID x)

Definition at line 1094 of file pcbnew.py.

◆ rbegin()

def pcbnew.KIID_VECT_LIST.rbegin (   self)
rbegin(KIID_VECT_LIST self) -> std::vector< KIID >::reverse_iterator

Definition at line 1058 of file pcbnew.py.

◆ rend()

def pcbnew.KIID_VECT_LIST.rend (   self)
rend(KIID_VECT_LIST self) -> std::vector< KIID >::reverse_iterator

Definition at line 1062 of file pcbnew.py.

◆ reserve()

def pcbnew.KIID_VECT_LIST.reserve (   self,
  n 
)
reserve(KIID_VECT_LIST self, std::vector< KIID >::size_type n)

Definition at line 1124 of file pcbnew.py.

◆ resize()

def pcbnew.KIID_VECT_LIST.resize (   self,
args 
)
    resize(KIID_VECT_LIST self, std::vector< KIID >::size_type new_size)
    resize(KIID_VECT_LIST self, std::vector< KIID >::size_type new_size, KIID x)

Definition at line 1110 of file pcbnew.py.

Here is the caller graph for this function:

◆ size()

def pcbnew.KIID_VECT_LIST.size (   self)
size(KIID_VECT_LIST self) -> std::vector< KIID >::size_type

Definition at line 1042 of file pcbnew.py.

◆ swap()

def pcbnew.KIID_VECT_LIST.swap (   self,
  v 
)
swap(KIID_VECT_LIST self, KIID_VECT_LIST v)

Definition at line 1046 of file pcbnew.py.

Property Documentation

◆ thisown

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

Definition at line 972 of file pcbnew.py.


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