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

⟦087c9dd4e⟧ TextFile

    Length: 1386 (0x56a)
    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

with Monitor;
generic
    type Item is private;
package Queue_Nonpriority_Balking_Multiple_Unbounded_Unmanaged_Iterator 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);
    procedure Remove_Item (From_The_Queue : in out Queue;
                           At_The_Position : in Positive);

    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;
    function Position_Of
                (The_Item : in Item; In_The_Queue : in Queue) return Natural;

    generic
        with procedure Process (The_Item : in Item; Continue : out Boolean);
    procedure Iterate (Over_The_Queue : in Queue);

    Overflow : exception;
    Underflow : exception;
    Position_Error : exception;

private
    type Node;
    type Structure is access Node;
    type Queue is
        record
            Guard : Monitor.Kind;
            The_Front : Structure;
            The_Back : Structure;
        end record;
end Queue_Nonpriority_Balking_Multiple_Unbounded_Unmanaged_Iterator;