Helper structure for quick data extraction from a word-typed ordinal value.
Source position: syshelph.inc line 957
| type TWordOverlay = bitpacked record | 
| case Integer of | 
| 0: ( | 
| AsBit: array [TWordBitIndex] of Boolean; | 
| ); | 
| 1: ( | 
| AsNibble: array [TWordNibbleIndex] of nibble; | 
| ); | 
| 2: ( | 
| AsByte: array [TWordByteIndex] of Byte; | 
| ); | 
| 3: ( | 
| AsWord: Word; | 
| ); | 
| 4: ( | 
| AsByteOverlay: array [TWordByteIndex] of TByteOverlay; | 
| ); | 
| end; | 
| 
 | Helper structure for quick data extraction from a byte-typed ordinal value. | |
| 
 | Helper structure for quick data extraction from a shortint-typed ordinal value. | |
| 
 | Helper structure for quick data extraction from a smallint-typed ordinal value. | |
| 
 | Helper structure for quick data extraction from a dword-typed ordinal value. | |
| 
 | Helper structure for quick data extraction from a cardinal-typed ordinal value. | |
| TIntegerOverlay | 
 | Helper structure for quick data extraction from a integer-typed ordinal value. | 
| 
 | Helper structure for quick data extraction from a qword-typed ordinal value. | |
| 
 | Helper structure for quick data extraction from a int64-typed ordinal value. | |
| TNativeIntOverlay | 
 | Helper structure for quick data extraction from a nativeint-typed ordinal value. | 
| TNativeUIntOverlay | 
 | Helper structure for quick data extraction from a nativeuint-typed ordinal value. | 
| 
 | Helper for a Word-typed ordinal value. |