ExpressionSequence
Python representation of a Maple expression sequence
Description
Method Summary
Superclass
Examples
The maple.ExpressionSequence class represents Maple expression sequences.
maple.ExpressionSequence inherits all the methods defined on Indexable objects.
It implements the collections.abc.Sequence base abstract class from the collections.abc module.
The following methods are defined on any ExpressionSequence object and invoke the specified implementation in Maple.
Method name
Usage
Maple implementation
index
x.index(y)
Return index of y within x
__reversed__
reversed(x)
Return iterator to traverse x in reverse order
A maple.ExpressionSequence object may be transformed to a Python list using the list command.
Indexable
See Also
OpenMaple/Python
OpenMaple/Python/Examples
OpenMaple/Python/Expression
OpenMaple/Python/List
OpenMaple/Python/Name
OpenMaple/Python/RTable
OpenMaple/Python/Set
OpenMaple/Python/Table
Download Help Document