DatumShiftCollection.slice Methods
Returns a slice of the collection.
Overload List
| Name | Description |
Public method | slice() | Returns the whole collection as a slice. |
Public method | slice(i, j) | Returns the elements in the specified range as a slice. |
Public method | slice(i, j, k) | Not supported. Returns the elements in the specified range and step-size as a slice. |
slice()
Returns the whole collection as a slice. Return Value
Type: A slice.
The collection as a slice.
slice(i, j)
Returns the elements in the specified range as a slice. Parameters
iType: int
The starting index of the slice.
jType: int
The first index beyond the slice.
Return Value
Type: A slice.
A slice that contains the elements in the range [i,j[.
slice(i, j, k)
Not supported. Returns the elements in the specified range and step-size as a slice. Parameters
iType: int
The starting index of the slice.
jType: int
The first index beyond the slice.
kType: int
The step size.
Return Value
Type: A slice.
A slice that contains the elements in the range [i,j[ using the step size k.
Platforms
Windows, Linux, Android