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

⟦cfe6f98f0⟧ TextFile

    Length: 822 (0x336)
    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 File is limited private;
    with procedure Open_For_Reading (The_File : in out File);
    with procedure Open_For_Writing (The_File : in out File);
    with procedure Get (The_File : in out File; The_Item : out Item);
    with procedure Put (The_File : in out File; The_Item : in Item);
    with procedure Close (The_File : in out File);
    with function Next_Item (The_File : in File) return Item;
    with function "<" (Left : in Item; Right : in Item) return Boolean;
    with function Is_End_Of_File (The_File : in File) return Boolean;
package Natural_Merge_Sort is

    procedure Sort (The_File : in out File;
                    Temporary_File_1 : in out File;
                    Temporary_File_2 : in out File);

    File_Is_Empty : exception;

end Natural_Merge_Sort;