Functor that takes a double-precision floating point number and an integer and returns a double-precision floating point number.

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

Syntax

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

Parameters

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

See Also