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=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,669a0df36b2c7d06,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-07-13 23:35:00 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!nntp-server.caltech.edu!attla2!ip.att.net!attbi_feed3!attbi.com!sccrnsc03.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: coding 'Output X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 12.234.13.56 X-Complaints-To: abuse@comcast.net X-Trace: sccrnsc03 1058164499 12.234.13.56 (Mon, 14 Jul 2003 06:34:59 GMT) NNTP-Posting-Date: Mon, 14 Jul 2003 06:34:59 GMT Organization: Comcast Online Date: Mon, 14 Jul 2003 06:34:59 GMT Xref: archiver1.google.com comp.lang.ada:40253 Date: 2003-07-14T06:34:59+00:00 List-Id: What's the best way to do something like X'Output when type X only has part of the story? Say "type X is array ..." but X is an array of sampled signal and there's an associated sampling rate etc. Making type X(Rate : Positive; Length : Positive) is record Data : Data_Array(1 .. Length); would require slice assignments to/from Data and Data is typically large, so that's not a good solution.