<Float16Algorithms> Data Interface

Provides script language access to C++ objects of this type.

Class HierarchyNo registered superclass.

Function Members

Function members are as follows:

Return Type Function Name Documentation
doubleAsFloat64Returns the input value as a <float64>.
doubleAsUint16Returns the input value as uint16.
int32IsNanReturns true if the <float64> is a NAN.
int32MemcmpCompares two objects using the memcmp function. Returns 0 if the objects match exactly. Otherwise returns non-zero.
stringPrintBitPatternReturns a string with the bit pattern.
int32SameReturns true of the left and right handle <float64> values are within float epsilon ( using the FLT_EPSILON preprocessor constant ) of each other.
int32WithinReturns true if value A is within a certain distance from value B. The underlying expression performs the comparison: fabs( a - b ) <= tolerance;