|
|
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: 687 (0x2af)
Types: TextFile
Names: »V«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
└─⟦129cab021⟧ »DATA«
└─⟦this⟧
with Object;
package Arguments is
Constraint_Error : exception;
type List is private;
function Void_Arguments return List;
procedure First (A_List : in out List);
function How_Many (A_List : List) return Natural;
procedure Read (A_List : in out List; An_Argument : out Object.Reference);
procedure Write (A_List : in out List; An_Argument : Object.Reference);
procedure Image (A_List : List);
private
Max : constant := 10;
type Element is array (1 .. Max) of Object.Reference;
type List is
record
Nb_Ref : Natural;
Iterator : Natural;
Ref : Element;
end record;
end Arguments;