|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T V
Length: 833 (0x341)
Types: TextFile
Names: »V«
└─⟦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⟧
generic
type Tree is private;
type Child is (<>);
Null_Tree : in Tree;
Left_Child : in Child;
Right_Child : in Child;
with function Is_Null (The_Tree : in Tree) return Boolean;
with function Child_Of
(The_Tree : in Tree; The_Child : in Child) return Tree;
with function Parent_Of (The_Tree : in Tree) return Tree;
package Tree_Utilities_Binary_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 Child;
function Left_Sibling_Of (The_Tree : in Tree) return Tree;
function Right_Sibling_Of (The_Tree : in Tree) return Tree;
Tree_Is_Root : exception;
end Tree_Utilities_Binary_Double;