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

⟦9f773e743⟧ TextFile

    Length: 641 (0x281)
    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_Static_Items is

    type Item_Type is private;
    type Vector_Type is array (Positive range <>) of Item_Type;

    Null_Item : constant Item_Type;

    procedure Generate (Vector : out Vector_Type);
    procedure Generate2 (Vector : out Vector_Type);
    procedure Generate_Ascending (Vector : out Vector_Type);
    procedure Generate_Descending (Vector : out Vector_Type);

    procedure Assign (Dest : out Item_Type; Source : in Item_Type);
    function Less (Left, Right : Item_Type) return Boolean;

private
    type Item_Type is new Integer;
    Null_Item : constant Item_Type := 0;
end Generator_Of_Static_Items;