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 - download
Index: ┃ T V

⟦6e0141f70⟧ TextFile

    Length: 597 (0x255)
    Types: TextFile
    Names: »V«

Derivation

└─⟦db1c56801⟧ Bits:30000748 8mm tape, Rational 1000, TESTMATE 2_2_0
    └─ ⟦866d14df1⟧ »DATA« 
        └─⟦97c804b2f⟧ 
            └─⟦this⟧ 

TextFile

with System;

package Unit_Name_Set is

  type Object is private;

  function Constructor (The_Segment : System.Segment) return Object;

  procedure Destructor (S : in out Object);

  function Equal (L, R : Object) return Boolean;

  function Is_Empty (S : Object) return Boolean;

  function Is_Member (S : Object; Unit : String) return Boolean;

  type Iterator is private;

  procedure Init  (Iter : out Iterator; S : Object);
  procedure Next  (Iter : in out Iterator);
  function  Value (Iter : Iterator) return String;
  function  Done  (Iter : Iterator) return Boolean;


end Unit_Name_Set;