Functor that takes two integer values and returns an integer value.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public delegate int IntBinaryFunction(
	int x,
	int y
)
Visual Basic (Declaration)
Public Delegate Function IntBinaryFunction ( _
	x As Integer, _
	y As Integer _
) As Integer
Visual C++
public delegate int IntBinaryFunction(
	int x, 
	int y
)

Parameters

x
Type: System..::.Int32
y
Type: System..::.Int32

See Also