| 
| 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) | 
|   | 
 | 
|   | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") | 
|   | 
Proxy of C++ std::vector< KIID > class.
 
Definition at line 1140 of file pcbnew.py.
 
◆ __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 1256 of file pcbnew.py.
 
 
◆ __bool__()
      
        
          | def pcbnew.KIID_VECT_LIST.__bool__  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
__bool__(KIID_VECT_LIST self) -> bool
 
Definition at line 1156 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, PySliceObject * slice) 
Definition at line 1179 of file pcbnew.py.
 
 
◆ __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 1175 of file pcbnew.py.
 
 
◆ __getitem__()
      
        
          | def pcbnew.KIID_VECT_LIST.__getitem__  | 
          ( | 
            | 
          self,  | 
        
        
           | 
           | 
          *  | 
          args  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
    __getitem__(KIID_VECT_LIST self, PySliceObject * slice) -> KIID_VECT_LIST
    __getitem__(KIID_VECT_LIST self, std::vector< KIID >::difference_type i) -> KIID 
Definition at line 1186 of file pcbnew.py.
 
 
◆ __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 1164 of file pcbnew.py.
 
 
◆ __iter__()
      
        
          | def pcbnew.KIID_VECT_LIST.__iter__  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
 
◆ __len__()
      
        
          | def pcbnew.KIID_VECT_LIST.__len__  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
__len__(KIID_VECT_LIST self) -> std::vector< KIID >::size_type
 
Definition at line 1160 of file pcbnew.py.
 
 
◆ __nonzero__()
      
        
          | def pcbnew.KIID_VECT_LIST.__nonzero__  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
__nonzero__(KIID_VECT_LIST self) -> bool
 
Definition at line 1152 of file pcbnew.py.
 
 
◆ __setitem__()
      
        
          | def pcbnew.KIID_VECT_LIST.__setitem__  | 
          ( | 
            | 
          self,  | 
        
        
           | 
           | 
          *  | 
          args  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
    __setitem__(KIID_VECT_LIST self, PySliceObject * slice, KIID_VECT_LIST v)
    __setitem__(KIID_VECT_LIST self, PySliceObject * slice)
    __setitem__(KIID_VECT_LIST self, std::vector< KIID >::difference_type i, KIID x) 
Definition at line 1193 of file pcbnew.py.
 
 
◆ __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 1168 of file pcbnew.py.
 
 
◆ append()
      
        
          | def pcbnew.KIID_VECT_LIST.append  | 
          ( | 
            | 
          self,  | 
        
        
           | 
           | 
            | 
          x  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
append(KIID_VECT_LIST self, KIID x)
 
Definition at line 1205 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 1277 of file pcbnew.py.
 
 
◆ back()
      
        
          | def pcbnew.KIID_VECT_LIST.back  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
back(KIID_VECT_LIST self) -> KIID
 
Definition at line 1273 of file pcbnew.py.
 
 
◆ begin()
      
        
          | def pcbnew.KIID_VECT_LIST.begin  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
begin(KIID_VECT_LIST self) -> std::vector< KIID >::iterator
 
Definition at line 1221 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 1299 of file pcbnew.py.
 
 
◆ clear()
      
        
          | def pcbnew.KIID_VECT_LIST.clear  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
clear(KIID_VECT_LIST self)
 
Definition at line 1237 of file pcbnew.py.
 
 
◆ empty()
      
        
          | def pcbnew.KIID_VECT_LIST.empty  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
empty(KIID_VECT_LIST self) -> bool
 
Definition at line 1209 of file pcbnew.py.
 
 
◆ end()
      
        
          | def pcbnew.KIID_VECT_LIST.end  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
end(KIID_VECT_LIST self) -> std::vector< KIID >::iterator
 
Definition at line 1225 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 1249 of file pcbnew.py.
 
 
◆ front()
      
        
          | def pcbnew.KIID_VECT_LIST.front  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
front(KIID_VECT_LIST self) -> KIID
 
Definition at line 1269 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 1241 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 1288 of file pcbnew.py.
 
 
◆ iterator()
      
        
          | def pcbnew.KIID_VECT_LIST.iterator  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
iterator(KIID_VECT_LIST self) -> SwigPyIterator
 
Definition at line 1146 of file pcbnew.py.
 
 
◆ pop()
      
        
          | def pcbnew.KIID_VECT_LIST.pop  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
pop(KIID_VECT_LIST self) -> KIID
 
Definition at line 1201 of file pcbnew.py.
 
 
◆ pop_back()
      
        
          | def pcbnew.KIID_VECT_LIST.pop_back  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
pop_back(KIID_VECT_LIST self)
 
Definition at line 1245 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 1265 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 1229 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 1233 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 1295 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 1281 of file pcbnew.py.
 
 
◆ size()
      
        
          | def pcbnew.KIID_VECT_LIST.size  | 
          ( | 
            | 
          self | ) | 
           | 
        
      
 
size(KIID_VECT_LIST self) -> std::vector< KIID >::size_type
 
Definition at line 1213 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 1217 of file pcbnew.py.
 
 
◆ thisown
  
  
      
        
          | pcbnew.KIID_VECT_LIST.thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") | 
         
       
   | 
  
static   | 
  
 
 
The documentation for this class was generated from the following file: