From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_40,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,acc23819b8999ef9 X-Google-Attributes: gid103376,public From: mfb@mbunix.mitre.org (Michael F Brenner) Subject: Re: an array of records within an array of records Date: 1998/04/15 Message-ID: <6h307q$5qj@top.mitre.org>#1/1 X-Deja-AN: 344404641 References: <3533A214.D5F94451@mcmail.com> Organization: The MITRE Corporation, Bedford Mass. Newsgroups: comp.lang.ada Date: 1998-04-15T00:00:00+00:00 List-Id: Yes, record initialization is a little long-winded, and is even more so when you make it more readable by adding in the field names: x := (CD=> 190, title => to_20 ("White Album"), author => to_20("Beatles")); Although it is long-winded, giving the field names can be very helpful if you come back to the data years later and wonder what is being filled in. It also helps when you are trying to pick out which of hundreds of data files is the input file for the juke box, as opposed to the financial program, the business process model, or the satellite location program.