Modifies the elements of this column by applying the given unary function to each element.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public DFStringColumn Transform(
	NMathFunctions..::.StringUnaryFunction function
)
Visual Basic (Declaration)
Public Function Transform ( _
	function As NMathFunctions..::.StringUnaryFunction _
) As DFStringColumn
Visual C++
public:
DFStringColumn^ Transform(
	NMathFunctions..::.StringUnaryFunction^ function
)

Parameters

function
Type: CenterSpace.NMath.Core..::.NMathFunctions..::.StringUnaryFunction
A delegate object representing a function that takes a single string parameter and returns a string.

Return Value

A reference to self.

Remarks

Upon exit, this[i] = function( this[i] ).

See Also