| 
|   | iterator (self) | 
|   | 
|   | __iter__ (self) | 
|   | 
|   | __nonzero__ (self) | 
|   | 
|   | __bool__ (self) | 
|   | 
|   | __len__ (self) | 
|   | 
|   | __getslice__ (self, i, j) | 
|   | 
|   | __setslice__ (self, *args) | 
|   | 
|   | __delslice__ (self, i, j) | 
|   | 
|   | __delitem__ (self, *args) | 
|   | 
|   | __getitem__ (self, *args) | 
|   | 
|   | __setitem__ (self, *args) | 
|   | 
|   | pop (self) | 
|   | 
|   | append (self, x) | 
|   | 
|   | empty (self) | 
|   | 
|   | size (self) | 
|   | 
|   | swap (self, v) | 
|   | 
|   | begin (self) | 
|   | 
|   | end (self) | 
|   | 
|   | rbegin (self) | 
|   | 
|   | rend (self) | 
|   | 
|   | clear (self) | 
|   | 
|   | get_allocator (self) | 
|   | 
|   | pop_back (self) | 
|   | 
|   | erase (self, *args) | 
|   | 
|   | __init__ (self, *args) | 
|   | 
|   | push_back (self, x) | 
|   | 
|   | front (self) | 
|   | 
|   | back (self) | 
|   | 
|   | assign (self, n, x) | 
|   | 
|   | resize (self, *args) | 
|   | 
|   | insert (self, *args) | 
|   | 
|   | pop_front (self) | 
|   | 
|   | push_front (self, x) | 
|   | 
 | 
|   | thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc="The membership flag") | 
|   | 
Proxy of C++ std::deque< PCB_GENERATOR * > class.
 
Definition at line 12861 of file pcbnew.py.
 
◆ __init__()
      
        
          | pcbnew.GENERATORS.__init__  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
          * |           args ) | 
        
      
 
    __init__(GENERATORS self) -> GENERATORS
    __init__(GENERATORS self, GENERATORS other) -> GENERATORS
    __init__(GENERATORS self, std::deque< PCB_GENERATOR * >::size_type size) -> GENERATORS
    __init__(GENERATORS self, std::deque< PCB_GENERATOR * >::size_type size, std::deque< PCB_GENERATOR * >::value_type value) -> GENERATORS
 
Definition at line 12977 of file pcbnew.py.
 
 
◆ __bool__()
      
        
          | pcbnew.GENERATORS.__bool__  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
__bool__(GENERATORS self) -> bool
 
Definition at line 12877 of file pcbnew.py.
 
 
◆ __delitem__()
      
        
          | pcbnew.GENERATORS.__delitem__  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
          * |           args ) | 
        
      
 
    __delitem__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i)
    __delitem__(GENERATORS self, SWIGPY_SLICEOBJECT * slice)
 
Definition at line 12900 of file pcbnew.py.
 
 
◆ __delslice__()
      
        
          | pcbnew.GENERATORS.__delslice__  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
           |           i,  | 
        
        
           | 
           | 
           |           j ) | 
        
      
 
__delslice__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i, std::deque< PCB_GENERATOR * >::difference_type j)
 
Definition at line 12896 of file pcbnew.py.
 
 
◆ __getitem__()
      
        
          | pcbnew.GENERATORS.__getitem__  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
          * |           args ) | 
        
      
 
    __getitem__(GENERATORS self, SWIGPY_SLICEOBJECT * slice) -> GENERATORS
    __getitem__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i) -> std::deque< PCB_GENERATOR * >::value_type
 
Definition at line 12907 of file pcbnew.py.
 
 
◆ __getslice__()
      
        
          | pcbnew.GENERATORS.__getslice__  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
           |           i,  | 
        
        
           | 
           | 
           |           j ) | 
        
      
 
__getslice__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i, std::deque< PCB_GENERATOR * >::difference_type j) -> GENERATORS
 
Definition at line 12885 of file pcbnew.py.
 
 
◆ __iter__()
      
        
          | pcbnew.GENERATORS.__iter__  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
 
◆ __len__()
      
        
          | pcbnew.GENERATORS.__len__  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
__len__(GENERATORS self) -> std::deque< PCB_GENERATOR * >::size_type
 
Definition at line 12881 of file pcbnew.py.
 
 
◆ __nonzero__()
      
        
          | pcbnew.GENERATORS.__nonzero__  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
__nonzero__(GENERATORS self) -> bool
 
Definition at line 12873 of file pcbnew.py.
 
 
◆ __setitem__()
      
        
          | pcbnew.GENERATORS.__setitem__  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
          * |           args ) | 
        
      
 
    __setitem__(GENERATORS self, SWIGPY_SLICEOBJECT * slice, GENERATORS v)
    __setitem__(GENERATORS self, SWIGPY_SLICEOBJECT * slice)
    __setitem__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i, std::deque< PCB_GENERATOR * >::value_type x)
 
Definition at line 12914 of file pcbnew.py.
 
 
◆ __setslice__()
      
        
          | pcbnew.GENERATORS.__setslice__  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
          * |           args ) | 
        
      
 
    __setslice__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i, std::deque< PCB_GENERATOR * >::difference_type j)
    __setslice__(GENERATORS self, std::deque< PCB_GENERATOR * >::difference_type i, std::deque< PCB_GENERATOR * >::difference_type j, GENERATORS v)
 
Definition at line 12889 of file pcbnew.py.
 
 
◆ append()
      
        
          | pcbnew.GENERATORS.append  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
           |           x ) | 
        
      
 
append(GENERATORS self, std::deque< PCB_GENERATOR * >::value_type x)
 
Definition at line 12926 of file pcbnew.py.
 
 
◆ assign()
      
        
          | pcbnew.GENERATORS.assign  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
           |           n,  | 
        
        
           | 
           | 
           |           x ) | 
        
      
 
assign(GENERATORS self, std::deque< PCB_GENERATOR * >::size_type n, std::deque< PCB_GENERATOR * >::value_type x)
 
Definition at line 12998 of file pcbnew.py.
 
 
◆ back()
      
        
          | pcbnew.GENERATORS.back  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
back(GENERATORS self) -> std::deque< PCB_GENERATOR * >::value_type
 
Definition at line 12994 of file pcbnew.py.
 
 
◆ begin()
      
        
          | pcbnew.GENERATORS.begin  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
begin(GENERATORS self) -> std::deque< PCB_GENERATOR * >::iterator
 
Definition at line 12942 of file pcbnew.py.
 
 
◆ clear()
      
        
          | pcbnew.GENERATORS.clear  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
 
◆ empty()
      
        
          | pcbnew.GENERATORS.empty  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
empty(GENERATORS self) -> bool
 
Definition at line 12930 of file pcbnew.py.
 
 
◆ end()
      
        
          | pcbnew.GENERATORS.end  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
end(GENERATORS self) -> std::deque< PCB_GENERATOR * >::iterator
 
Definition at line 12946 of file pcbnew.py.
 
 
◆ erase()
      
        
          | pcbnew.GENERATORS.erase  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
          * |           args ) | 
        
      
 
    erase(GENERATORS self, std::deque< PCB_GENERATOR * >::iterator pos) -> std::deque< PCB_GENERATOR * >::iterator
    erase(GENERATORS self, std::deque< PCB_GENERATOR * >::iterator first, std::deque< PCB_GENERATOR * >::iterator last) -> std::deque< PCB_GENERATOR * >::iterator
 
Definition at line 12970 of file pcbnew.py.
 
 
◆ front()
      
        
          | pcbnew.GENERATORS.front  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
front(GENERATORS self) -> std::deque< PCB_GENERATOR * >::value_type
 
Definition at line 12990 of file pcbnew.py.
 
 
◆ get_allocator()
      
        
          | pcbnew.GENERATORS.get_allocator  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
get_allocator(GENERATORS self) -> std::deque< PCB_GENERATOR * >::allocator_type
 
Definition at line 12962 of file pcbnew.py.
 
 
◆ insert()
      
        
          | pcbnew.GENERATORS.insert  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
          * |           args ) | 
        
      
 
    insert(GENERATORS self, std::deque< PCB_GENERATOR * >::iterator pos, std::deque< PCB_GENERATOR * >::value_type x) -> std::deque< PCB_GENERATOR * >::iterator
    insert(GENERATORS self, std::deque< PCB_GENERATOR * >::iterator pos, std::deque< PCB_GENERATOR * >::size_type n, std::deque< PCB_GENERATOR * >::value_type x)
 
Definition at line 13009 of file pcbnew.py.
 
 
◆ iterator()
      
        
          | pcbnew.GENERATORS.iterator  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
iterator(GENERATORS self) -> SwigPyIterator
 
Definition at line 12867 of file pcbnew.py.
 
 
◆ pop()
      
        
          | pcbnew.GENERATORS.pop  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
pop(GENERATORS self) -> std::deque< PCB_GENERATOR * >::value_type
 
Definition at line 12922 of file pcbnew.py.
 
 
◆ pop_back()
      
        
          | pcbnew.GENERATORS.pop_back  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
 
◆ pop_front()
      
        
          | pcbnew.GENERATORS.pop_front  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
pop_front(GENERATORS self)
 
Definition at line 13016 of file pcbnew.py.
 
 
◆ push_back()
      
        
          | pcbnew.GENERATORS.push_back  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
           |           x ) | 
        
      
 
push_back(GENERATORS self, std::deque< PCB_GENERATOR * >::value_type x)
 
Definition at line 12986 of file pcbnew.py.
 
 
◆ push_front()
      
        
          | pcbnew.GENERATORS.push_front  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
           |           x ) | 
        
      
 
push_front(GENERATORS self, std::deque< PCB_GENERATOR * >::value_type x)
 
Definition at line 13020 of file pcbnew.py.
 
 
◆ rbegin()
      
        
          | pcbnew.GENERATORS.rbegin  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
rbegin(GENERATORS self) -> std::deque< PCB_GENERATOR * >::reverse_iterator
 
Definition at line 12950 of file pcbnew.py.
 
 
◆ rend()
      
        
          | pcbnew.GENERATORS.rend  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
rend(GENERATORS self) -> std::deque< PCB_GENERATOR * >::reverse_iterator
 
Definition at line 12954 of file pcbnew.py.
 
 
◆ resize()
      
        
          | pcbnew.GENERATORS.resize  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
          * |           args ) | 
        
      
 
    resize(GENERATORS self, std::deque< PCB_GENERATOR * >::size_type new_size)
    resize(GENERATORS self, std::deque< PCB_GENERATOR * >::size_type new_size, std::deque< PCB_GENERATOR * >::value_type x)
 
Definition at line 13002 of file pcbnew.py.
 
 
◆ size()
      
        
          | pcbnew.GENERATORS.size  | 
          ( | 
           |           self | ) | 
           | 
        
      
 
size(GENERATORS self) -> std::deque< PCB_GENERATOR * >::size_type
 
Definition at line 12934 of file pcbnew.py.
 
 
◆ swap()
      
        
          | pcbnew.GENERATORS.swap  | 
          ( | 
           |           self,  | 
        
        
           | 
           | 
           |           v ) | 
        
      
 
swap(GENERATORS self, GENERATORS v)
 
Definition at line 12938 of file pcbnew.py.
 
 
◆ thisown
  
  
      
        
          | pcbnew.GENERATORS.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: