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 - download
Index: ┃ T V

⟦6fd4f6eaa⟧ TextFile

    Length: 1015 (0x3f7)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 

TextFile

generic
    type Element is private;
package Trees is
    type Object is private;
    type Son is (Left, Right);
    Empty_Tree : constant Object;

    procedure Copy (From_Tree : in Object; To_Tree : in out Object);
    procedure Purge (The_Tree : in out Object);
    procedure Build (The_Element : Element;
                     The_Tree : in out Object;
                     Of_The_Son : Son);
    procedure Put (From_Tree : in out Object; To_Element : Element);
    procedure Swap (The_Son : Son;
                    From_Tree : in out Object;
                    With_Tree : in out Object);
    function Is_Equal (Left, Right : Object) return Boolean;
    function Is_Empty (The_Tree : Object) return Boolean;
    function Element_From (The_Tree : Object) return Element;
    function Son_Of (The_Tree : Object; The_Son : Son) return Object;

    Overfull : exception;
    Tree_Is_Empty : exception;

private

    type Node;
    type Object is access Node;
    Empty_Tree : constant Object := null;

end Trees;