The IPiecewiseFunctionExprMap type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
|
|
Name |
Returns the name of the map. (Inherited from IMap.) |
|
|
NbDim |
Returns the dimension of the map i.e the number of indexers.
Example with a Map of int: M[1..5][1..2]M.GetNbDim( ) returns 2.
(Inherited from IMap.) |
|
|
Size |
This member function returns an integer specifying the size of the invoking array.
An empty array has size 0 (zero). Example with a Map of int:
M[1..5][1..2]M.GetSize( ) returns 5. M.GetSub( 1 ).GetSize( ) returns 2.
(Inherited from IMap.) |
|
|
TotalSize |
Returns the total number of values that are in this array. Example with a Map of int:
M[1..5][1..2]M.GetTotalSize( ) returns 10. M.GetSub(1).GetTotalSize
returns 2. (Inherited from IMap.) |