A class providing access to the index of ITupleMap.

Namespace: ILOG.Concert
Assembly: oplall (in oplall.dll)

Syntax

C#
public interface IMapIndexArray

Remarks

This class allows you to manipulate indices to access instances of ITupleMap. Here is an example:

Examples

CopyC#
OplFactory oplF = new OplFactory();
IMapIndexArray indices = oplF.mapIndexArray(0); 
string str = "Monday";
indices.Add(str);
indices.Add(2);  
tuples.get(indices, tuple);

See Also