Functor that takes two floating point numbers, and returns a floating point number.

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

Syntax

C#
public delegate float FloatBinaryFunction(
	float x,
	float y
)
Visual Basic (Declaration)
Public Delegate Function FloatBinaryFunction ( _
	x As Single, _
	y As Single _
) As Single
Visual C++
public delegate float FloatBinaryFunction(
	float x, 
	float y
)

Parameters

x
Type: System..::.Single
y
Type: System..::.Single

See Also