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

⟦e354127f7⟧ TextFile

    Length: 1041 (0x411)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Po_Handle;
with Unit_Name_Set;
with System;

package Unit_Set_Map is

  subtype Test_Case_Handle is Po_Handle.Object;
  subtype Comp_Unit_Set    is Unit_Name_Set.Object;

  type Object is private;

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

  procedure Destructor (Of_The_Obj : in out Object);

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

  function Eval (In_The_Map : Object; With_Domain : Test_Case_Handle)
                return Comp_Unit_Set;

  procedure Find (In_The_Map         :        Object;
                  The_Domain         :        Test_Case_Handle;
                  Yielding_The_Range : in out Comp_Unit_Set;
                  With_Success       : out    Boolean);

  function Is_Empty (The_Map : Object) return Boolean;

  type Iterator is private;

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

end Unit_Set_Map;