comp.lang.ada
 help / color / mirror / Atom feed
* unconstrainted arrays
@ 2001-10-17 15:18 Alfred Hilscher
  2001-10-17 15:35 ` Lutz Donnerhacke
  2001-10-17 16:09 ` unconstrainted arrays Claude SIMON
  0 siblings, 2 replies; 12+ messages in thread
From: Alfred Hilscher @ 2001-10-17 15:18 UTC (permalink / raw)


Hi,

I know that I can define unconstrainted array where the actual
constraints are given later:

type My_Array is array (<>) of Integer;

A1 : My_Array (1..10);



Moreover I know a way to use this with structure:

type s (len : integer) is record
            X,Y : Integer;
            A : My_Array (1..Len);
     end record;

PTs : s (10);


But this would add one extra component to the record (Len). Is there a
way to avoid this extra component ? Maybe a pragma or rep-specs ? Its
encapsulated within a package body for HW handling where the extra
component is unwanted.

Thanks.



^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2001-10-22  8:11 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-10-17 15:18 unconstrainted arrays Alfred Hilscher
2001-10-17 15:35 ` Lutz Donnerhacke
2001-10-17 16:28   ` Alfred Hilscher
2001-10-18  7:42     ` Lutz Donnerhacke
2001-10-18 11:03       ` Rep spec still not possible Petter Fryklund
2001-10-18 12:44         ` Lutz Donnerhacke
2001-10-18 17:10           ` Jeffrey Carter
2001-10-19 13:52             ` Exactly the prblem, how do we make a known constant value static? Petter Fryklund
2001-10-20  0:04               ` James Rogers
2001-10-20  2:53               ` Jeffrey Carter
2001-10-22  8:11                 ` We still don't know how to make a " Petter Fryklund
2001-10-17 16:09 ` unconstrainted arrays Claude SIMON

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox