KiCad Pcbnew Python Scripting
Loading...
Searching...
No Matches
pcbnew.netclasses_map Class Reference
Inheritance diagram for pcbnew.netclasses_map:

Public Member Functions

 iterator (self)
 
 __iter__ (self)
 
 __nonzero__ (self)
 
 __bool__ (self)
 
 __len__ (self)
 
 __iter__ (self)
 
 iterkeys (self)
 
 itervalues (self)
 
 iteritems (self)
 
 __getitem__ (self, key)
 
 __delitem__ (self, key)
 
 has_key (self, key)
 
 keys (self)
 
 values (self)
 
 items (self)
 
 __contains__ (self, key)
 
 key_iterator (self)
 
 value_iterator (self)
 
 __setitem__ (self, *args)
 
 asdict (self)
 
 __init__ (self, *args)
 
 empty (self)
 
 size (self)
 
 swap (self, v)
 
 begin (self)
 
 end (self)
 
 rbegin (self)
 
 rend (self)
 
 clear (self)
 
 get_allocator (self)
 
 count (self, x)
 
 erase (self, *args)
 
 find (self, x)
 
 lower_bound (self, x)
 
 upper_bound (self, x)
 

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::map< wxString,std::shared_ptr< NETCLASS > > class.

Definition at line 10945 of file pcbnew.py.

Constructor & Destructor Documentation

◆ __init__()

pcbnew.netclasses_map.__init__ ( self,
* args )
    __init__(netclasses_map self, std::less< wxString > const & other) -> netclasses_map
    __init__(netclasses_map self) -> netclasses_map
    __init__(netclasses_map self, netclasses_map other) -> netclasses_map

Definition at line 11024 of file pcbnew.py.

Member Function Documentation

◆ __bool__()

pcbnew.netclasses_map.__bool__ ( self)
__bool__(netclasses_map self) -> bool

Definition at line 10961 of file pcbnew.py.

◆ __contains__()

pcbnew.netclasses_map.__contains__ ( self,
key )
__contains__(netclasses_map self, wxString key) -> bool

Definition at line 11001 of file pcbnew.py.

◆ __delitem__()

pcbnew.netclasses_map.__delitem__ ( self,
key )
__delitem__(netclasses_map self, wxString key)

Definition at line 10981 of file pcbnew.py.

◆ __getitem__()

pcbnew.netclasses_map.__getitem__ ( self,
key )
__getitem__(netclasses_map self, wxString key) -> std::map< wxString,std::shared_ptr< NETCLASS > >::mapped_type const &

Definition at line 10977 of file pcbnew.py.

◆ __iter__() [1/2]

pcbnew.netclasses_map.__iter__ ( self)

Definition at line 10954 of file pcbnew.py.

◆ __iter__() [2/2]

pcbnew.netclasses_map.__iter__ ( self)

Definition at line 10968 of file pcbnew.py.

◆ __len__()

pcbnew.netclasses_map.__len__ ( self)
__len__(netclasses_map self) -> std::map< wxString,std::shared_ptr< NETCLASS > >::size_type

Definition at line 10965 of file pcbnew.py.

◆ __nonzero__()

pcbnew.netclasses_map.__nonzero__ ( self)
__nonzero__(netclasses_map self) -> bool

Definition at line 10957 of file pcbnew.py.

◆ __setitem__()

pcbnew.netclasses_map.__setitem__ ( self,
* args )
    __setitem__(netclasses_map self, wxString key)
    __setitem__(netclasses_map self, wxString key, std::map< wxString,std::shared_ptr< NETCLASS > >::mapped_type const & x)

Definition at line 11013 of file pcbnew.py.

◆ asdict()

pcbnew.netclasses_map.asdict ( self)
asdict(netclasses_map self) -> PyObject *

Definition at line 11020 of file pcbnew.py.

◆ begin()

pcbnew.netclasses_map.begin ( self)
begin(netclasses_map self) -> std::map< wxString,std::shared_ptr< NETCLASS > >::iterator

Definition at line 11044 of file pcbnew.py.

◆ clear()

pcbnew.netclasses_map.clear ( self)
clear(netclasses_map self)

Definition at line 11060 of file pcbnew.py.

◆ count()

pcbnew.netclasses_map.count ( self,
x )
count(netclasses_map self, wxString x) -> std::map< wxString,std::shared_ptr< NETCLASS > >::size_type

Definition at line 11068 of file pcbnew.py.

◆ empty()

pcbnew.netclasses_map.empty ( self)
empty(netclasses_map self) -> bool

Definition at line 11032 of file pcbnew.py.

◆ end()

pcbnew.netclasses_map.end ( self)
end(netclasses_map self) -> std::map< wxString,std::shared_ptr< NETCLASS > >::iterator

Definition at line 11048 of file pcbnew.py.

◆ erase()

pcbnew.netclasses_map.erase ( self,
* args )
    erase(netclasses_map self, wxString x) -> std::map< wxString,std::shared_ptr< NETCLASS > >::size_type
    erase(netclasses_map self, std::map< wxString,std::shared_ptr< NETCLASS > >::iterator position)
    erase(netclasses_map self, std::map< wxString,std::shared_ptr< NETCLASS > >::iterator first, std::map< wxString,std::shared_ptr< NETCLASS > >::iterator last)

Definition at line 11072 of file pcbnew.py.

◆ find()

pcbnew.netclasses_map.find ( self,
x )
find(netclasses_map self, wxString x) -> std::map< wxString,std::shared_ptr< NETCLASS > >::iterator

Definition at line 11080 of file pcbnew.py.

◆ get_allocator()

pcbnew.netclasses_map.get_allocator ( self)
get_allocator(netclasses_map self) -> std::map< wxString,std::shared_ptr< NETCLASS > >::allocator_type

Definition at line 11064 of file pcbnew.py.

◆ has_key()

pcbnew.netclasses_map.has_key ( self,
key )
has_key(netclasses_map self, wxString key) -> bool

Definition at line 10985 of file pcbnew.py.

◆ items()

pcbnew.netclasses_map.items ( self)
items(netclasses_map self) -> PyObject *

Definition at line 10997 of file pcbnew.py.

◆ iterator()

pcbnew.netclasses_map.iterator ( self)
iterator(netclasses_map self) -> SwigPyIterator

Definition at line 10951 of file pcbnew.py.

◆ iteritems()

pcbnew.netclasses_map.iteritems ( self)

Definition at line 10974 of file pcbnew.py.

◆ iterkeys()

pcbnew.netclasses_map.iterkeys ( self)

Definition at line 10970 of file pcbnew.py.

◆ itervalues()

pcbnew.netclasses_map.itervalues ( self)

Definition at line 10972 of file pcbnew.py.

◆ key_iterator()

pcbnew.netclasses_map.key_iterator ( self)
key_iterator(netclasses_map self) -> SwigPyIterator

Definition at line 11005 of file pcbnew.py.

◆ keys()

pcbnew.netclasses_map.keys ( self)
keys(netclasses_map self) -> PyObject *

Definition at line 10989 of file pcbnew.py.

◆ lower_bound()

pcbnew.netclasses_map.lower_bound ( self,
x )
lower_bound(netclasses_map self, wxString x) -> std::map< wxString,std::shared_ptr< NETCLASS > >::iterator

Definition at line 11084 of file pcbnew.py.

◆ rbegin()

pcbnew.netclasses_map.rbegin ( self)
rbegin(netclasses_map self) -> std::map< wxString,std::shared_ptr< NETCLASS > >::reverse_iterator

Definition at line 11052 of file pcbnew.py.

◆ rend()

pcbnew.netclasses_map.rend ( self)
rend(netclasses_map self) -> std::map< wxString,std::shared_ptr< NETCLASS > >::reverse_iterator

Definition at line 11056 of file pcbnew.py.

◆ size()

pcbnew.netclasses_map.size ( self)
size(netclasses_map self) -> std::map< wxString,std::shared_ptr< NETCLASS > >::size_type

Definition at line 11036 of file pcbnew.py.

◆ swap()

pcbnew.netclasses_map.swap ( self,
v )
swap(netclasses_map self, netclasses_map v)

Definition at line 11040 of file pcbnew.py.

◆ upper_bound()

pcbnew.netclasses_map.upper_bound ( self,
x )
upper_bound(netclasses_map self, wxString x) -> std::map< wxString,std::shared_ptr< NETCLASS > >::iterator

Definition at line 11088 of file pcbnew.py.

◆ value_iterator()

pcbnew.netclasses_map.value_iterator ( self)
value_iterator(netclasses_map self) -> SwigPyIterator

Definition at line 11009 of file pcbnew.py.

◆ values()

pcbnew.netclasses_map.values ( self)
values(netclasses_map self) -> PyObject *

Definition at line 10993 of file pcbnew.py.

Property Documentation

◆ thisown

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

Definition at line 10948 of file pcbnew.py.


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