Sets the value of the element. The values in indices must be the accessors you would use with GetSub and GetAt methods. Example with a Map of int: M[i in 1..5][j in 1..2] = j M.SetAt( [1][2], 4) will set M[1][2] to 4 instead of 2. It is the same as using M.GetSub(1).Set(2, 4) .

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

Syntax

C#
void SetAt(
	IMapIndexArray indices,
	int v
)

Parameters

indices
Type: ILOG.Concert..::..IMapIndexArray
v
Type: System..::..Int32

See Also