Functor that takes a floating point number and an integer 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 FloatIntFunction(
	float x,
	int y
)
Visual Basic (Declaration)
Public Delegate Function FloatIntFunction ( _
	x As Single, _
	y As Integer _
) As Single
Visual C++
public delegate float FloatIntFunction(
	float x, 
	int y
)

Parameters

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

See Also