![]() |
Chemical Data Processing Library Python API - Version 1.2.3
|
RegularGridSet. More...
Inheritance diagram for CDPL.Grid.DRegularGridSet:Public Member Functions | |
| None | __init__ () |
| Initializes the DRegularGridSet instance. | |
| None | __init__ (DRegularGridSet set) |
| Initializes a copy of the DRegularGridSet instance set. More... | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| int | getSize () |
| bool | isEmpty () |
| None | resize (int num_elem, DRegularGrid value) |
| None | reserve (int num_elem) |
| int | getCapacity () |
| None | clear () |
| DRegularGridSet | assign (DRegularGridSet array) |
Replaces the current state of self with a copy of the state of the DRegularGridSet instance array. More... | |
| None | assign (int num_elem, DRegularGrid value) |
| None | addElement (DRegularGrid value) |
| None | addElements (DRegularGridSet values) |
| None | insertElement (int idx, DRegularGrid value) |
| None | insertElements (int idx, int num_elem, DRegularGrid value) |
| None | insertElements (int index, DRegularGridSet values) |
| None | popLastElement () |
| None | removeElement (int idx) |
| None | removeElements (int begin_idx, int end_idx) |
| DRegularGrid | getFirstElement () |
| DRegularGrid | getLastElement () |
| DRegularGrid | getElement (int idx) |
| None | setElement (int idx, DRegularGrid value) |
| None | __delitem__ (int idx) |
| DRegularGrid | __getitem__ (int idx) |
| int | __len__ () |
| None | __setitem__ (int index, DRegularGrid value) |
| bool | __eq__ (object set) |
Returns the result of the comparison operation self == set. More... | |
| bool | __ne__ (object set) |
Returns the result of the comparison operation self != set. More... | |
| tuple | __getstate__ () |
Properties | |
| objectID = property(getObjectID) | |
| size = property(getSize) | |
RegularGridSet.
| None CDPL.Grid.DRegularGridSet.__init__ | ( | DRegularGridSet | set | ) |
Initializes a copy of the DRegularGridSet instance set.
| set | The DRegularGridSet instance to copy. |
| int CDPL.Grid.DRegularGridSet.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python DRegularGridSet instances may reference the same underlying C++ class instance. The commonly used Python expression a is not b thus cannot tell reliably whether the two DRegularGridSet instances a and b reference different C++ objects. The numeric identifier returned by this method allows to correctly implement such an identity test via the simple expression a.getObjectID() != b.getObjectID().
| int CDPL.Grid.DRegularGridSet.getSize | ( | ) |
| bool CDPL.Grid.DRegularGridSet.isEmpty | ( | ) |
| None CDPL.Grid.DRegularGridSet.resize | ( | int | num_elem, |
| DRegularGrid | value | ||
| ) |
| num_elem | |
| value |
| None CDPL.Grid.DRegularGridSet.reserve | ( | int | num_elem | ) |
| num_elem |
| int CDPL.Grid.DRegularGridSet.getCapacity | ( | ) |
| DRegularGridSet CDPL.Grid.DRegularGridSet.assign | ( | DRegularGridSet | array | ) |
Replaces the current state of self with a copy of the state of the DRegularGridSet instance array.
| array | The DRegularGridSet instance to copy. |
| None CDPL.Grid.DRegularGridSet.assign | ( | int | num_elem, |
| DRegularGrid | value | ||
| ) |
| num_elem | |
| value |
| None CDPL.Grid.DRegularGridSet.addElement | ( | DRegularGrid | value | ) |
| value |
| None CDPL.Grid.DRegularGridSet.addElements | ( | DRegularGridSet | values | ) |
| values |
| None CDPL.Grid.DRegularGridSet.insertElement | ( | int | idx, |
| DRegularGrid | value | ||
| ) |
| idx | |
| value |
| None CDPL.Grid.DRegularGridSet.insertElements | ( | int | idx, |
| int | num_elem, | ||
| DRegularGrid | value | ||
| ) |
| idx | |
| num_elem | |
| value |
| None CDPL.Grid.DRegularGridSet.insertElements | ( | int | index, |
| DRegularGridSet | values | ||
| ) |
| index | |
| values |
| None CDPL.Grid.DRegularGridSet.removeElement | ( | int | idx | ) |
| idx |
| None CDPL.Grid.DRegularGridSet.removeElements | ( | int | begin_idx, |
| int | end_idx | ||
| ) |
| begin_idx | |
| end_idx |
| DRegularGrid CDPL.Grid.DRegularGridSet.getFirstElement | ( | ) |
| DRegularGrid CDPL.Grid.DRegularGridSet.getLastElement | ( | ) |
| DRegularGrid CDPL.Grid.DRegularGridSet.getElement | ( | int | idx | ) |
| idx |
| None CDPL.Grid.DRegularGridSet.setElement | ( | int | idx, |
| DRegularGrid | value | ||
| ) |
| idx | |
| value |
| None CDPL.Grid.DRegularGridSet.__delitem__ | ( | int | idx | ) |
| idx |
| DRegularGrid CDPL.Grid.DRegularGridSet.__getitem__ | ( | int | idx | ) |
| idx |
| int CDPL.Grid.DRegularGridSet.__len__ | ( | ) |
| None CDPL.Grid.DRegularGridSet.__setitem__ | ( | int | index, |
| DRegularGrid | value | ||
| ) |
| index | |
| value |
| bool CDPL.Grid.DRegularGridSet.__eq__ | ( | object | set | ) |
Returns the result of the comparison operation self == set.
| set | The object instance to be compared with. |
| bool CDPL.Grid.DRegularGridSet.__ne__ | ( | object | set | ) |
Returns the result of the comparison operation self != set.
| set | The object instance to be compared with. |
| tuple CDPL.Grid.DRegularGridSet.__getstate__ | ( | ) |
| arg1 |