qp.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
PACKED Keyword
  Keywords Contents Index                                   Back
 
  PACKED <array type> │ <file type> │ <record type> │ <set type>
 
  Description
 
    The keyword PACKED forces some Pascal compilers to compress arrays,
    files, records, and sets. QuickPascal always packs these data
    structures. PACKED also serves to differentiate data types──that
    is, any type qualified with PACKED is not assignment-compatible
    with the same type not qualified with PACKED. However, a PACKED
    ARRAY OF Char is assignment-compatible with a string of the same
    declared length.