Table - OpenMaple representation of a Table
|
Description
|
|
•
|
The com.maplesoft.openmaple.Table class represents a Maple table. Table publicly inherits from Algebraic; therefore, it provides all the member functions from the Algebraic class in addition to those listed here.
|
•
|
To create a Table call newTable. The new Table will be empty.
|
|
|
Method Summary
|
|
|
void assign( Algebraic index, Algebraic val ) throws MapleException
|
|
•
|
assign places val into the Table with key index.
|
|
|
Algebraic select( Algebraic index ) throws MapleException
|
|
•
|
select returns the value associated with key index.
|
|
|
boolean has( Algebraic index )
|
|
•
|
has returns true if the Table contains data associated with key index.
|
|
|
void remove( Algebraic index )
|
|
•
|
remove removes the data associated with index from the Table.
|
|
|
|
Download Help Document
Was this information helpful?