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

⟦ade4318c1⟧ TextFile

    Length: 1138 (0x472)
    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 Item is private;
    type Priority is limited private;
    with function Priority_Of (The_Item : in Item) return Priority;
    with function "<=" (Left : in Priority; Right : in Priority) return Boolean;
package Queue_Priority_Nonbalking_Sequential_Unbounded_Managed_Noniterator is

    type Queue is limited private;

    procedure Copy (From_The_Queue : in Queue; To_The_Queue : in out Queue);
    procedure Clear (The_Queue : in out Queue);
    procedure Add (The_Item : in Item; To_The_Queue : in out Queue);
    procedure Pop (The_Queue : in out Queue);

    function Is_Equal (Left : in Queue; Right : in Queue) return Boolean;
    function Length_Of (The_Queue : in Queue) return Natural;
    function Is_Empty (The_Queue : in Queue) return Boolean;
    function Front_Of (The_Queue : in Queue) return Item;

    Overflow : exception;
    Underflow : exception;

private
    type Node;
    type Structure is access Node;
    type Queue is
        record
            The_Front : Structure;
            The_Back : Structure;
        end record;
end Queue_Priority_Nonbalking_Sequential_Unbounded_Managed_Noniterator;