9 A
, B
, C
, D
, E
: Integer;
12 package List
is new Opt27_Pkg
(Rec_T
);
14 My_List
: List
.List_T
;
16 function Is_Match
(Element
: Rec_T
; Template
: Integer) return Boolean is
18 return (Element
.C
= Template
);
21 function Find_Int
is new List
.Find_Elem
(Integer, Is_Match
);
23 Node
: List
.Node_T
:= Find_Int
(10, My_List
);
26 if not List
.Is_Null
(Node
) then