Method | Description | |
---|---|---|
Concat ( |
Concat Method Return the concatenation of the sequence object with the passed in sequence object. |
|
Contains ( |
Contains Method Return true if the sequence contains the given item. This method throws a PythonException if an error occurs during the check. |
|
DelSlice ( int i1, int i2 ) : void |
DelSlice Method Deletes the slice of the sequence with the given indices. |
|
GetSlice ( int i1, int i2 ) : |
GetSlice Method Return the slice of the sequence with the given indices. |
|
Index ( |
Index Method Return the index of the given item in the sequence, or -1 if the item does not appear in the sequence. |
|
IsSequenceType ( |
IsSequenceType Method Returns true if the given object implements the sequence protocol. |
|
Repeat ( int count ) : |
Repeat Method Return the sequence object repeated N times. This is equivalent to the Python expression "object * count". |
|
SetSlice ( int i1, int i2, |
SetSlice Method Sets the slice of the sequence with the given indices. |
Method | Description | |
---|---|---|
PySequence ( ) : System | ||
PySequence ( |
public GetSlice ( int i1, int i2 ) : |
||
i1 | int | |
i2 | int | |
return |
public static IsSequenceType ( |
||
value | ||
return | bool |
protected PySequence ( |
||
ptr | ||
return | System |
public SetSlice ( int i1, int i2, |
||
i1 | int | |
i2 | int | |
v | ||
return | void |