KiCad Pcbnew Python Scripting
Loading...
Searching...
No Matches
pcbnew.NETCODES_MAP Class Reference
Inheritance diagram for pcbnew.NETCODES_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< int,NETINFO_ITEM * > class.

Definition at line 19179 of file pcbnew.py.

Constructor & Destructor Documentation

◆ __init__()

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

Definition at line 19258 of file pcbnew.py.

Member Function Documentation

◆ __bool__()

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

Definition at line 19195 of file pcbnew.py.

◆ __contains__()

pcbnew.NETCODES_MAP.__contains__ ( self,
key )
__contains__(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::key_type const & key) -> bool

Definition at line 19235 of file pcbnew.py.

◆ __delitem__()

pcbnew.NETCODES_MAP.__delitem__ ( self,
key )
__delitem__(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::key_type const & key)

Definition at line 19215 of file pcbnew.py.

◆ __getitem__()

pcbnew.NETCODES_MAP.__getitem__ ( self,
key )
__getitem__(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::key_type const & key) -> NETINFO_ITEM

Definition at line 19211 of file pcbnew.py.

◆ __iter__() [1/2]

pcbnew.NETCODES_MAP.__iter__ ( self)

Definition at line 19188 of file pcbnew.py.

◆ __iter__() [2/2]

pcbnew.NETCODES_MAP.__iter__ ( self)

Definition at line 19202 of file pcbnew.py.

◆ __len__()

pcbnew.NETCODES_MAP.__len__ ( self)
__len__(NETCODES_MAP self) -> std::map< int,NETINFO_ITEM * >::size_type

Definition at line 19199 of file pcbnew.py.

◆ __nonzero__()

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

Definition at line 19191 of file pcbnew.py.

◆ __setitem__()

pcbnew.NETCODES_MAP.__setitem__ ( self,
* args )
    __setitem__(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::key_type const & key)
    __setitem__(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::key_type const & key, NETINFO_ITEM x)

Definition at line 19247 of file pcbnew.py.

◆ asdict()

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

Definition at line 19254 of file pcbnew.py.

◆ begin()

pcbnew.NETCODES_MAP.begin ( self)
begin(NETCODES_MAP self) -> std::map< int,NETINFO_ITEM * >::iterator

Definition at line 19278 of file pcbnew.py.

◆ clear()

pcbnew.NETCODES_MAP.clear ( self)
clear(NETCODES_MAP self)

Definition at line 19294 of file pcbnew.py.

◆ count()

pcbnew.NETCODES_MAP.count ( self,
x )
count(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::key_type const & x) -> std::map< int,NETINFO_ITEM * >::size_type

Definition at line 19302 of file pcbnew.py.

◆ empty()

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

Definition at line 19266 of file pcbnew.py.

◆ end()

pcbnew.NETCODES_MAP.end ( self)
end(NETCODES_MAP self) -> std::map< int,NETINFO_ITEM * >::iterator

Definition at line 19282 of file pcbnew.py.

◆ erase()

pcbnew.NETCODES_MAP.erase ( self,
* args )
    erase(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::key_type const & x) -> std::map< int,NETINFO_ITEM * >::size_type
    erase(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::iterator position)
    erase(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::iterator first, std::map< int,NETINFO_ITEM * >::iterator last)

Definition at line 19306 of file pcbnew.py.

◆ find()

pcbnew.NETCODES_MAP.find ( self,
x )
find(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::key_type const & x) -> std::map< int,NETINFO_ITEM * >::iterator

Definition at line 19314 of file pcbnew.py.

◆ get_allocator()

pcbnew.NETCODES_MAP.get_allocator ( self)
get_allocator(NETCODES_MAP self) -> std::map< int,NETINFO_ITEM * >::allocator_type

Definition at line 19298 of file pcbnew.py.

◆ has_key()

pcbnew.NETCODES_MAP.has_key ( self,
key )
has_key(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::key_type const & key) -> bool

Definition at line 19219 of file pcbnew.py.

◆ items()

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

Definition at line 19231 of file pcbnew.py.

◆ iterator()

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

Definition at line 19185 of file pcbnew.py.

◆ iteritems()

pcbnew.NETCODES_MAP.iteritems ( self)

Definition at line 19208 of file pcbnew.py.

◆ iterkeys()

pcbnew.NETCODES_MAP.iterkeys ( self)

Definition at line 19204 of file pcbnew.py.

◆ itervalues()

pcbnew.NETCODES_MAP.itervalues ( self)

Definition at line 19206 of file pcbnew.py.

◆ key_iterator()

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

Definition at line 19239 of file pcbnew.py.

◆ keys()

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

Definition at line 19223 of file pcbnew.py.

◆ lower_bound()

pcbnew.NETCODES_MAP.lower_bound ( self,
x )
lower_bound(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::key_type const & x) -> std::map< int,NETINFO_ITEM * >::iterator

Definition at line 19318 of file pcbnew.py.

◆ rbegin()

pcbnew.NETCODES_MAP.rbegin ( self)
rbegin(NETCODES_MAP self) -> std::map< int,NETINFO_ITEM * >::reverse_iterator

Definition at line 19286 of file pcbnew.py.

◆ rend()

pcbnew.NETCODES_MAP.rend ( self)
rend(NETCODES_MAP self) -> std::map< int,NETINFO_ITEM * >::reverse_iterator

Definition at line 19290 of file pcbnew.py.

◆ size()

pcbnew.NETCODES_MAP.size ( self)
size(NETCODES_MAP self) -> std::map< int,NETINFO_ITEM * >::size_type

Definition at line 19270 of file pcbnew.py.

◆ swap()

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

Definition at line 19274 of file pcbnew.py.

◆ upper_bound()

pcbnew.NETCODES_MAP.upper_bound ( self,
x )
upper_bound(NETCODES_MAP self, std::map< int,NETINFO_ITEM * >::key_type const & x) -> std::map< int,NETINFO_ITEM * >::iterator

Definition at line 19322 of file pcbnew.py.

◆ value_iterator()

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

Definition at line 19243 of file pcbnew.py.

◆ values()

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

Definition at line 19227 of file pcbnew.py.

Property Documentation

◆ thisown

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

Definition at line 19182 of file pcbnew.py.


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