Click or drag to resize

DFBoolColumnIsMissing Method

Returns false. Missing values are not supported in DFBoolColumns, which have only two valid values.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public override bool IsMissing(
	int i
)

Parameters

i  Int32
An element index.

Return Value

Boolean
Returns false.

Implements

IDFColumnIsMissing(Int32)
Remarks
To represent missing values in boolean data, use DFIntColumn. For example, use 1 for true, 0 for false, and -1 for missing.
See Also