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 - downloadIndex: ┃ T V ┃
Length: 841 (0x349) Types: TextFile Names: »V«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧
with Root; package Tomato is type State is private; type State_Ptr is private; function Create (Offspring : Natural) return Root.Object; procedure Delete (This_Object : in out Root.Object); procedure Set_Z (This_State : in out State; This_Z : Natural); function Get_Z (This_State : State) return Natural; procedure Grow (This_Object : Root.Object; Marker : Boolean := False); function Part_Of (This_Object : Root.Object) return State_Ptr; procedure Set_Heir (This_State_Ptr : in out State_Ptr; Heir : Root.Object); function Get_Heir (This_State_Ptr : State_Ptr) return Root.Object; private type State is record Z : Natural; Offspring : Natural := 0; Heir : Root.Object; end record; type State_Ptr is access State; end Tomato;