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

Public Member Functions

def iterator (self)
 
def __iter__ (self)
 
def __nonzero__ (self)
 
def __bool__ (self)
 
def __len__ (self)
 
def __iter__ (self)
 
def iterkeys (self)
 
def itervalues (self)
 
def iteritems (self)
 
def __getitem__ (self, key)
 
def __delitem__ (self, key)
 
def has_key (self, key)
 
def keys (self)
 
def values (self)
 
def items (self)
 
def __contains__ (self, key)
 
def key_iterator (self)
 
def value_iterator (self)
 
def __setitem__ (self, *args)
 
def asdict (self)
 
def __init__ (self, *args)
 
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 count (self, x)
 
def erase (self, *args)
 
def find (self, x)
 
def lower_bound (self, x)
 
def 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 16838 of file pcbnew.py.

Constructor & Destructor Documentation

◆ __init__()

def 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 16917 of file pcbnew.py.

Here is the caller graph for this function:

Member Function Documentation

◆ __bool__()

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

Definition at line 16854 of file pcbnew.py.

◆ __contains__()

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

Definition at line 16894 of file pcbnew.py.

◆ __delitem__()

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

Definition at line 16874 of file pcbnew.py.

◆ __getitem__()

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

Definition at line 16870 of file pcbnew.py.

◆ __iter__() [1/2]

def pcbnew.NETCODES_MAP.__iter__ (   self)

Definition at line 16847 of file pcbnew.py.

◆ __iter__() [2/2]

def pcbnew.NETCODES_MAP.__iter__ (   self)

Definition at line 16861 of file pcbnew.py.

◆ __len__()

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

Definition at line 16858 of file pcbnew.py.

◆ __nonzero__()

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

Definition at line 16850 of file pcbnew.py.

◆ __setitem__()

def 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 16906 of file pcbnew.py.

Here is the caller graph for this function:

◆ asdict()

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

Definition at line 16913 of file pcbnew.py.

◆ begin()

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

Definition at line 16937 of file pcbnew.py.

◆ clear()

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

Definition at line 16953 of file pcbnew.py.

◆ count()

def 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 16961 of file pcbnew.py.

◆ empty()

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

Definition at line 16925 of file pcbnew.py.

◆ end()

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

Definition at line 16941 of file pcbnew.py.

◆ erase()

def 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 16965 of file pcbnew.py.

Here is the caller graph for this function:

◆ find()

def 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 16973 of file pcbnew.py.

◆ get_allocator()

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

Definition at line 16957 of file pcbnew.py.

◆ has_key()

def 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 16878 of file pcbnew.py.

◆ items()

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

Definition at line 16890 of file pcbnew.py.

◆ iterator()

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

Definition at line 16844 of file pcbnew.py.

Here is the caller graph for this function:

◆ iteritems()

def pcbnew.NETCODES_MAP.iteritems (   self)

Definition at line 16867 of file pcbnew.py.

◆ iterkeys()

def pcbnew.NETCODES_MAP.iterkeys (   self)

Definition at line 16863 of file pcbnew.py.

◆ itervalues()

def pcbnew.NETCODES_MAP.itervalues (   self)

Definition at line 16865 of file pcbnew.py.

◆ key_iterator()

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

Definition at line 16898 of file pcbnew.py.

Here is the caller graph for this function:

◆ keys()

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

Definition at line 16882 of file pcbnew.py.

◆ lower_bound()

def 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 16977 of file pcbnew.py.

◆ rbegin()

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

Definition at line 16945 of file pcbnew.py.

◆ rend()

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

Definition at line 16949 of file pcbnew.py.

◆ size()

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

Definition at line 16929 of file pcbnew.py.

◆ swap()

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

Definition at line 16933 of file pcbnew.py.

◆ upper_bound()

def 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 16981 of file pcbnew.py.

◆ value_iterator()

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

Definition at line 16902 of file pcbnew.py.

Here is the caller graph for this function:

◆ values()

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

Definition at line 16886 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 16841 of file pcbnew.py.


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