Functor that takes a type T and returns a type T

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

Syntax

C#
public delegate T UnaryFunction<T>(
	T x
)
Visual Basic (Declaration)
Public Delegate Function UnaryFunction(Of T) ( _
	x As T _
) As T
Visual C++
generic<typename T>
public delegate T UnaryFunction(
	T x
)

Parameters

x
Type: T

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "T:CenterSpace.NMath.Core.NMathFunctions.UnaryFunction`1"]

See Also