OpenMaya.MUint64Array Class Reference
Array of MUint64 values.
The MUint64Array class provides an array of unsigned long integer (64-bit) elements using a common array interface and value semantics. See Working with M*Array Classes for more details.
OpenMaya.MUint64Array.__init__ |
( |
| ) |
|
x.__init__(...) initializes x; see help(type(x)) for signature
OpenMaya.MUint64Array.__add__ |
( |
| ) |
|
OpenMaya.MUint64Array.__contains__ |
( |
| ) |
|
x.__contains__(y) <==> y in x
OpenMaya.MUint64Array.__delitem__ |
( |
| ) |
|
x.__delitem__(y) <==> del x[y]
OpenMaya.MUint64Array.__delslice__ |
( |
| ) |
|
x.__delslice__(i, j) <==> del x[i:j]
Use of negative indices is not supported.
OpenMaya.MUint64Array.__getitem__ |
( |
| ) |
|
x.__getitem__(y) <==> x[y]
OpenMaya.MUint64Array.__getslice__ |
( |
| ) |
|
x.__getslice__(i, j) <==> x[i:j]
Use of negative indices is not supported.
OpenMaya.MUint64Array.__iadd__ |
( |
| ) |
|
OpenMaya.MUint64Array.__imul__ |
( |
| ) |
|
OpenMaya.MUint64Array.__len__ |
( |
| ) |
|
OpenMaya.MUint64Array.__mul__ |
( |
| ) |
|
OpenMaya.MUint64Array.__repr__ |
( |
| ) |
|
x.__repr__() <==> repr(x)
OpenMaya.MUint64Array.__rmul__ |
( |
| ) |
|
OpenMaya.MUint64Array.__setitem__ |
( |
| ) |
|
x.__setitem__(i, y) <==> x[i]=y
OpenMaya.MUint64Array.__setslice__ |
( |
| ) |
|
x.__setslice__(i, j, y) <==> x[i:j]=y
Use of negative indices is not supported.
OpenMaya.MUint64Array.__str__ |
( |
| ) |
|
OpenMaya.MUint64Array.append |
( |
| ) |
|
Add a value to the end of the array.
OpenMaya.MUint64Array.clear |
( |
| ) |
|
Remove all elements from the array.
OpenMaya.MUint64Array.copy |
( |
| ) |
|
Replace the array contents with that of another or of a compatible Python sequence.
OpenMaya.MUint64Array.insert |
( |
| ) |
|
Insert a new value into the array at the given index.
OpenMaya.MUint64Array.remove |
( |
| ) |
|
Remove an element from the array.
OpenMaya.MUint64Array.setLength |
( |
| ) |
|
Grow or shrink the array to contain a specific number of elements.
OpenMaya.MUint64Array.sizeIncrement |
|
static |
Number of elements by which to grow the array when necessary.