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

⟦a2f0e99bf⟧ TextFile

    Length: 1050 (0x41a)
    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 Tree is private;
    Null_Tree : in Tree;
    with function Is_Null (The_Tree : in Tree) return Boolean;
    with function Number_Of_Children_In (The_Tree : in Tree) return Natural;
    with function Child_Of
                     (The_Tree : in Tree; The_Child : in Positive) return Tree;
    with function Parent_Of (The_Tree : in Tree) return Tree;
package Tree_Utilities_Arbitrary_Double is

    function Is_Root (The_Tree : in Tree) return Boolean;
    function Is_Leaf (The_Tree : in Tree) return Boolean;
    function Root_Of (The_Tree : in Tree) return Tree;
    function Child_Name_Of (The_Tree : in Tree) return Positive;
    function Number_Of_Siblings_Of (The_Tree : in Tree) return Natural;
    function Left_Sibling_Of (The_Tree : in Tree) return Tree;
    function Right_Sibling_Of (The_Tree : in Tree) return Tree;
    function Leftmost_Sibling_Of (The_Tree : in Tree) return Tree;
    function Rightmost_Sibling_Of (The_Tree : in Tree) return Tree;

    Tree_Is_Root : exception;

end Tree_Utilities_Arbitrary_Double;