Creates and returns an integer expression representing the difference between integer expression e and value v.

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

Syntax

C#
IIntExpr Diff(
	IIntExpr e,
	int v
)
Visual Basic
Function Diff ( _
	e As IIntExpr, _
	v As Integer _
) As IIntExpr

Parameters

e
Type: ILOG.Concert..::..IIntExpr
An integer expression to use in the difference.
v
Type: System..::..Int32
A value to subtract

Return Value

An integer expression representing the difference e - v.

See Also