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

⟦e9a590c9a⟧ TextFile

    Length: 1494 (0x5d6)
    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

generic
    type Item is private;
    type List is private;
    with procedure Clear (The_List : in out List);
    with procedure Construct (The_Item : in Item; And_The_List : in out List);
    with procedure Swap_Tail (Of_The_List : in out List;
                              And_The_List : in out List);
    with function Is_Null (The_List : in List) return Boolean;
    with function Tail_Of (The_List : in List) return List;
package List_Utilities_Single is

    type Items is array (Positive range <>) of Item;

    procedure Construct (The_Items : in Items; And_The_List : in out List);
    procedure Construct (The_List : in out List; And_The_List : in out List);
    procedure Split (The_List : in out List;
                     At_The_Position : in Positive;
                     Into_The_List : in out List);
    procedure Insert (The_Item : in Item;
                      In_The_List : in out List;
                      After_The_Position : in Positive);
    procedure Insert (The_List : in out List;
                      In_The_List : in out List;
                      After_The_Position : in Positive);
    procedure Insert (The_Item : in Item; After_The_List : in out List);
    procedure Insert (The_List : in List; After_The_List : in out List);
    procedure Remove_Item (In_The_List : in out List;
                           At_The_Position : in Positive);

    function Foot_Of (The_List : in List) return List;

    Position_Error : exception;

end List_Utilities_Single;