  | DFIntColumnTransform(FuncInt32) Method | 
            Modifies the elements of this column by applying the given no-argument function 
            to each element.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DFIntColumn Transform(
	Func<int> function
)
Public Function Transform ( 
	function As Func(Of Integer)
) As DFIntColumn
public:
DFIntColumn^ Transform(
	Func<int>^ function
)
member Transform : 
        function : Func<int> -> DFIntColumn Parameters
- function  FuncInt32
 - A delegate object representing a function that
            takes no parameters and returns a int.
 
Return Value
DFIntColumnA reference to self.
See Also