1 with Ada
.Containers
; use Ada
.Containers
;
2 with Ada
.Containers
.Hashed_Maps
;
3 with Ada
.Containers
.Vectors
;
5 package body Lto21_Pkg2
is
7 pragma Suppress
(Tampering_Check
);
11 function Hash
(Syd
: Natural) return Hash_Type
is (Hash_Type
'Mod (Syd
));
13 package Vect2
is new Vectors
(Positive, Natural);
16 new Hashed_Maps
(Natural, Vect2
.Vector
, Hash
, "=", Vect2
."=");
18 procedure Nested
(M
: Maps
.Map
) is
20 procedure Inner
(Position
: Cursor
) is null;
22 Iterate
(M
, Inner
'Access);