Represents a function of one input parameter.

Namespace:  Meta.Numerics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public delegate TOut Function<TIn, TOut>(
	TIn x
)
Public Delegate Function Function(Of TIn, TOut) ( _
	x As TIn _
) As TOut
generic<typename TIn, typename TOut>
public delegate TOut Function(
	TIn x
)

Parameters

x
TIn
The input parameter.

Type Parameters

TIn
The type of the input parameter.
TOut
The type of the output value.

Return Value

The output value.

See Also