Click or drag to resize

DFBoolColumnTransform(FuncBoolean, Boolean) 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 DFBoolColumn Transform(
	Func<bool, bool> function
)

Parameters

function  FuncBoolean, Boolean
A delegate object representing a function that takes a single bool parameter and returns a bool.

Return Value

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