blob: b92cb588bd17e6c21b73d2ef6dcb7c91a1fbd2e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package Loop_Optimization8_Pkg2 is
type Array_T is array (Natural range <>) of Integer;
type Obj_T (Length : Natural) is
record
Elements : Array_T (1 .. Length);
end record;
type T is access Obj_T;
function Length (Set : T) return Natural;
function Index (Set : T; Position : Natural) return Integer;
pragma Inline (Length, Index);
end Loop_Optimization8_Pkg2;
|