|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T V
Length: 2213 (0x8a5)
Types: TextFile
Names: »V«
└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
└─⟦5cb1d1d7f⟧ »DATA«
└─⟦3b1ee7bd8⟧
└─⟦this⟧
generic
type Iterator is private;
type Iterator_Element is private;
with function Done (Iter : Iterator) return Boolean is <>;
with function Value (Iter : Iterator) return Iterator_Element is <>;
with procedure Next (Iter : in out Iterator) is <>;
package Generic_Iterator_Operations_Solution is
generic
with function Count (Elem : Iterator_Element) return Integer;
procedure Total_Count (Iter : in out Iterator; Total : out Integer);
generic
with function Predicate (Elem : Iterator_Element) return Boolean;
procedure Check (Iter : in out Iterator; Found : out Boolean);
generic
with function Predicate (Elem : Iterator_Element) return Boolean;
procedure Total_True (Iter : in out Iterator; Total : out Natural);
generic
type Information is private;
with function Count (Info : Information; Elem : Iterator_Element)
return Integer;
procedure Total_Count_With_Info (Info : Information;
Iter : in out Iterator;
Total : out Integer);
generic
type Information is private;
with function Predicate (Info : Information; Elem : Iterator_Element)
return Boolean;
procedure Total_True_With_Info (Info : Information;
Iter : in out Iterator;
Total : out Natural);
generic
type Information is private;
with function Predicate (Info : Information; Elem : Iterator_Element)
return Boolean;
procedure Check_With_Info (Info : Information;
Iter : in out Iterator;
Found : out Boolean);
generic
with procedure Apply (Elem : Iterator_Element);
procedure Process_All (Iter : in out Iterator);
generic
type State is private;
with function Initialize return State;
with procedure Apply (Elem : Iterator_Element; S : in out State);
procedure Process_All_With_State (Iter : in out Iterator);
end Generic_Iterator_Operations_Solution;