|
|
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: 1008 (0x3f0)
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⟧
with Varying_String_G;
package Generator_Of_V_Strings_And_Stat_Values is
package Var_String is new Varying_String_G (10);
use Var_String;
type Value_Type is private;
type Item_Type is
record
Key : V_String;
Val : Value_Type;
end record;
type Vector_Type is array (Positive range <>) of Item_Type;
procedure Generate (Vector : in out Vector_Type);
procedure Generate2 (Vector : in out Vector_Type);
procedure Generate_Ascending (Vector : in out Vector_Type);
procedure Generate_Descending (Vector : in out Vector_Type);
procedure Assign (Dest : in out V_String; Source : in V_String);
procedure Assign (Dest : in out String; Source : in String);
procedure Assign (Dest : in out Value_Type; Source : in Value_Type);
function Equals (Left, Right : String) return Boolean;
function Less (Left, Right : String) return Boolean;
private
type Value_Type is new Integer;
end Generator_Of_V_Strings_And_Stat_Values;