Click or drag to resize

DFGenericColumnTransform(FuncObject, Object) 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 DFGenericColumn Transform(
	Func<Object, Object> function
)

Parameters

function  FuncObject, Object
A delegate object representing a function that takes a single object parameter and returns an object.

Return Value

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