|  | DFBoolColumnTransform(FuncBoolean) 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
 Syntax
Syntaxpublic DFBoolColumn Transform(
	Func<bool> function
)
Public Function Transform ( 
	function As Func(Of Boolean)
) As DFBoolColumn
public:
DFBoolColumn^ Transform(
	Func<bool>^ function
)
member Transform : 
        function : Func<bool> -> DFBoolColumn Parameters
- function  FuncBoolean
- A delegate object representing a function that
            takes no parameters and returns a bool.
Return Value
DFBoolColumnA reference to self.
 See Also
See Also