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

⟦a21f145f4⟧ TextFile

    Length: 1012 (0x3f4)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Object;
with String_Map_Generic;

package Symbols is

    package Symbols_Table is
       new String_Map_Generic (Size => 100,
                               Range_Type => Object.Reference,
                               Ignore_Case => True);

    subtype Table is Symbols_Table.Map;

    procedure Put (This_Object : Object.Reference;
                   Named : Object.Tiny_String;
                   Into : in out Table);
    procedure Get (Object_Named : Object.Tiny_String;
                   From : Table;  
                   Into : in out Object.Reference;
                   Status : out Boolean);

    function Exist (This_Name : Object.Tiny_String; Into : Table)
                   return Boolean;
    procedure Remove (This_Name : Object.Tiny_String; From : in out Table);
    procedure Free (This_Table : in out Table);
    function Create return Table;
    function Is_Empty (This_Table : Table) return Boolean;
    function Cardinality (Of_This_Table : Table) return Natural;

end Symbols;