Click or drag to resize

DFStringColumnTransform(FuncString, String) Method

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DFStringColumn Transform(
	Func<string, string> function
)

Parameters

function  FuncString, String
A delegate object representing a function that takes a single string parameter and returns a string.

Return Value

DFStringColumn
A reference to self.
Remarks
Upon exit, this[i] = function( this[i] ).
See Also