Packed Record TDoubleEndianCnvRec

Hierarchy
Methods
Properties

Unit

Declaration

type TDoubleEndianCnvRec = packed record

Description

TDoubleEndianCnvRec is used in ConvertDouble to convert a double to or from the BigEndian format.

TDoubleEndianCnvRec = packed record
  case BytePos of
    EndVal: (EndianVal: double);
    ByteVal: (Bytes: array[0..SizeOf(double) - 1] of byte);
end;

Overview

Fields

Public Bytes: array[0..SizeOf(double) - 1] of byte
Public EndianVal: double

Description

Fields

Public Bytes: array[0..SizeOf(double) - 1] of byte

Overlapping bytes of the double

Public EndianVal: double

The value we are trying to convert