Chemical Data Processing Library Python API - Version 1.1.1
|
An array of Math.Vector2UL objects. More...
Public Member Functions | |
None | __init__ () |
Creates an empty array. | |
None | __init__ (Vector2ULArray array) |
Initializes a copy of the Vector2ULArray instance array. More... | |
None | __init__ (object a) |
Initializes the Vector2ULArray instance. More... | |
int | getObjectID () |
Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
int | getSize () |
Returns the number of elements stored in the array. More... | |
bool | isEmpty () |
Tells whether the array is empty (getSize() == 0). More... | |
None | resize (int num_elem, Vector2UL value) |
Inserts or erases elements at the end so that the size becomes num_elem. More... | |
None | reserve (int num_elem) |
Preallocates memory for (at least) num_elem elements. More... | |
int | getCapacity () |
Returns the number of elements for which memory has been allocated. More... | |
None | clear () |
Erases all elements. | |
Vector2ULArray | assign (Vector2ULArray array) |
Replaces the current state of self with a copy of the state of the Vector2ULArray instance array. More... | |
None | assign (int num_elem, Vector2UL value) |
This function fills the array with num_elem copies of the given value. More... | |
None | assign (object a) |
Replaces the current state of self with a copy of the state of the object instance a. More... | |
None | addElement (Vector2UL value) |
Inserts a new element at the end of the array. More... | |
None | addElements (Vector2ULArray values) |
None | insertElement (int idx, Vector2UL value) |
Inserts a new element before the location specified by the index idx. More... | |
None | insertElements (int idx, int num_elem, Vector2UL value) |
Inserts num_elem copies of value before the location specified by the index idx. More... | |
None | insertElements (int index, Vector2ULArray values) |
None | popLastElement () |
Removes the last element of the array. More... | |
None | removeElement (int idx) |
Removes the element at the position specified by the index idx. More... | |
None | removeElements (int begin_idx, int end_idx) |
Vector2UL | getFirstElement () |
Returns a reference to the first element of the array. More... | |
Vector2UL | getLastElement () |
Returns a reference to the last element of the array. More... | |
Vector2UL | getElement (int idx) |
Returns a reference to the element at index idx. More... | |
None | setElement (int idx, Vector2UL value) |
Assigns a new value to the element specified by the index idx. More... | |
object | toArray (bool as_vec) |
None | __delitem__ (int idx) |
Vector2UL | __getitem__ (int idx) |
int | __len__ () |
None | __setitem__ (int index, Vector2UL value) |
bool | __eq__ (object array) |
Returns the result of the comparison operation self == array . More... | |
bool | __ne__ (object array) |
Returns the result of the comparison operation self != array . More... | |
Properties | |
objectID = property(getObjectID) | |
size = property(getSize) | |
An array of Math.Vector2UL objects.
None CDPL.Math.Vector2ULArray.__init__ | ( | Vector2ULArray | array | ) |
Initializes a copy of the Vector2ULArray instance array.
array | The Vector2ULArray instance to copy. |
None CDPL.Math.Vector2ULArray.__init__ | ( | object | a | ) |
Initializes the Vector2ULArray instance.
a |
int CDPL.Math.Vector2ULArray.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python Vector2ULArray 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 Vector2ULArray 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.Math.Vector2ULArray.getSize | ( | ) |
Returns the number of elements stored in the array.
bool CDPL.Math.Vector2ULArray.isEmpty | ( | ) |
Tells whether the array is empty (getSize() == 0).
True
if the array is empty, False
otherwise. None CDPL.Math.Vector2ULArray.resize | ( | int | num_elem, |
Vector2UL | value | ||
) |
Inserts or erases elements at the end so that the size becomes num_elem.
num_elem | The new size. |
value | The value for newly inserted elements. |
None CDPL.Math.Vector2ULArray.reserve | ( | int | num_elem | ) |
Preallocates memory for (at least) num_elem elements.
If num_elem is less than or equal to the current capacity, this call has no effect. Otherwise, it is a request for allocation of additional memory. If the request is successful, then the capacity is greater than or equal to num_elem. Otherwise, the capacity is unchanged. In either case, the number of elements will not change.
num_elem | The number of elements to reserve memory for. |
int CDPL.Math.Vector2ULArray.getCapacity | ( | ) |
Returns the number of elements for which memory has been allocated.
The capacity is always greater than or equal to the number of currently stored elements.
Vector2ULArray CDPL.Math.Vector2ULArray.assign | ( | Vector2ULArray | array | ) |
Replaces the current state of self with a copy of the state of the Vector2ULArray instance array.
array | The Vector2ULArray instance to copy. |
None CDPL.Math.Vector2ULArray.assign | ( | int | num_elem, |
Vector2UL | value | ||
) |
This function fills the array with num_elem copies of the given value.
Note that the assignment completely changes the array and the new size is the same as the number of elements assigned. Old data will be lost.
num_elem | The number of elements to be assigned. |
value | The value to be assigned. |
None CDPL.Math.Vector2ULArray.assign | ( | object | a | ) |
Replaces the current state of self with a copy of the state of the object instance a.
a | The object instance to copy. |
None CDPL.Math.Vector2ULArray.addElement | ( | Vector2UL | value | ) |
Inserts a new element at the end of the array.
value | The value of the new element. |
None CDPL.Math.Vector2ULArray.addElements | ( | Vector2ULArray | values | ) |
values |
None CDPL.Math.Vector2ULArray.insertElement | ( | int | idx, |
Vector2UL | value | ||
) |
Inserts a new element before the location specified by the index idx.
idx | The location where to insert the new element. |
value | The value of the element to insert. |
Base.IndexError | if the array is empty or idx is not in the range [0, getSize()]. |
None CDPL.Math.Vector2ULArray.insertElements | ( | int | idx, |
int | num_elem, | ||
Vector2UL | value | ||
) |
Inserts num_elem copies of value before the location specified by the index idx.
idx | The location where to insert the new elements. |
num_elem | The number of elements to insert. |
value | The value of the elements to insert. |
Base.IndexError | if idx is not in the range [0, getSize()]. |
None CDPL.Math.Vector2ULArray.insertElements | ( | int | index, |
Vector2ULArray | values | ||
) |
index | |
values |
None CDPL.Math.Vector2ULArray.popLastElement | ( | ) |
Removes the last element of the array.
Base.OperationFailed | if the array is empty. |
None CDPL.Math.Vector2ULArray.removeElement | ( | int | idx | ) |
Removes the element at the position specified by the index idx.
idx | The zero-based index of the element to remove. |
Base.IndexError | if the array is empty or idx is not in the range [0, getSize() - 1]. |
None CDPL.Math.Vector2ULArray.removeElements | ( | int | begin_idx, |
int | end_idx | ||
) |
begin_idx | |
end_idx |
Vector2UL CDPL.Math.Vector2ULArray.getFirstElement | ( | ) |
Returns a reference to the first element of the array.
Base.OperationFailed | if the array is empty. |
Vector2UL CDPL.Math.Vector2ULArray.getLastElement | ( | ) |
Returns a reference to the last element of the array.
Base.OperationFailed | if the array is empty. |
Vector2UL CDPL.Math.Vector2ULArray.getElement | ( | int | idx | ) |
Returns a reference to the element at index idx.
The method is equivalent to operator[](std::size_t).
idx | The zero-based index of the element. |
Base.IndexError | if the array is empty or idx is not in the range [0, getSize() - 1]. |
None CDPL.Math.Vector2ULArray.setElement | ( | int | idx, |
Vector2UL | value | ||
) |
Assigns a new value to the element specified by the index idx.
idx | The zero-based index of the element for which to assign a new value. |
value | The new value of the element after assignment. |
Base.IndexError | if the array is empty or idx is not in the range [0, getSize() - 1]. |
object CDPL.Math.Vector2ULArray.toArray | ( | bool | as_vec | ) |
as_vec |
None CDPL.Math.Vector2ULArray.__delitem__ | ( | int | idx | ) |
idx |
Vector2UL CDPL.Math.Vector2ULArray.__getitem__ | ( | int | idx | ) |
idx |
int CDPL.Math.Vector2ULArray.__len__ | ( | ) |
None CDPL.Math.Vector2ULArray.__setitem__ | ( | int | index, |
Vector2UL | value | ||
) |
index | |
value |
bool CDPL.Math.Vector2ULArray.__eq__ | ( | object | array | ) |
Returns the result of the comparison operation self == array
.
array | The object instance to be compared with. |
bool CDPL.Math.Vector2ULArray.__ne__ | ( | object | array | ) |
Returns the result of the comparison operation self != array
.
array | The object instance to be compared with. |