DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T V

⟦56c3e8c07⟧ TextFile

    Length: 975 (0x3cf)
    Types: TextFile
    Names: »V«

Derivation

└─⟦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⟧ 

TextFile

package Generator_Of_Stat_Keys_And_Dyn_Values is

    type Key_Type is private;
    type Value_Type is limited private;
    type Item_Type is
        record
            Key : Key_Type;
            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 Key_Type; Source : in Key_Type);
    procedure Assign (Dest : in out Value_Type; Source : in Value_Type);
    procedure Destroy (Val : in out Value_Type);
    function Equals (Left, Right : Value_Type) return Boolean;
    function Less (Left, Right : Key_Type) return Boolean;

private
    type Key_Type is new Integer;
    type Value_Type is access Integer;
end Generator_Of_Stat_Keys_And_Dyn_Values;