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: 1607 (0x647) Types: TextFile Names: »V«
└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13 └─ ⟦124ff5788⟧ »DATA« └─⟦this⟧ └─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧ └─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16 └─ ⟦6f12a12be⟧ »DATA« └─⟦this⟧ └─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦9b477e385⟧ └─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16 └─ ⟦6f12a12be⟧ »DATA« └─⟦9b477e385⟧ └─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04 └─ ⟦d65440be7⟧ »DATA« └─⟦9b477e385⟧ └─⟦this⟧
generic type Element is private; pragma Must_Be_Constrained (Yes => Element); package Queue_Generic is type Queue is private; procedure Initialize (Q : out Queue); function Is_Empty (Q : Queue) return Boolean; procedure Make_Empty (Q : in out Queue); procedure Copy (Target : in out Queue; Source : Queue); procedure Add (Q : in out Queue; X : Element); procedure Delete (Q : in out Queue); function First (Q : Queue) return Element; -- on calls to delete and first, not is_empty(q) is assumed -- constraint error will be raises is is_empty(q) type Iterator is limited private; procedure Init (Iter : out Iterator; Q : Queue); procedure Next (Iter : in out Iterator); function Value (Iter : Iterator) return Element; function Done (Iter : Iterator) return Boolean; ------------------------------------------------------ -- Implementation Notes and Non-Standard Operations -- ------------------------------------------------------ -- variables of type queue are initially empty -- therefore, the call to initialize is optional -- := and = are meaningless -- := implies sharing (introduces an alias) for sub-structures -- garbage may be generated private type Node; type Pointer is access Node; type Node is record Value : Element; Link : Pointer; end record; type Queue is record Head : Pointer; Tail : Pointer; end record; type Iterator is new Queue; end Queue_Generic;