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

⟦0d14e9bb7⟧ TextFile

    Length: 1202 (0x4b2)
    Types: TextFile
    Names: »V«

Derivation

└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with String_Map_Generic;  
with Message;
with Object;
package Table is

    type Symbol_Kind is private;

    procedure Find (The_Table : Symbol_Kind;
                    Name : Message.Tiny_String;
                    New_Reference : in out Object.Reference;
                    Success : out Boolean);

    procedure Insert (The_Table : in out Symbol_Kind;
                      Name : Message.Tiny_String;
                      New_Reference : Object.Reference);

    procedure Remove (The_Table : in out Symbol_Kind;
                      Name : Message.Tiny_String);

    function Eval (The_Table : Symbol_Kind; Name : Message.Tiny_String)
                  return Object.Reference;

    procedure Initialize (The_Table : in out Symbol_Kind);

    function Is_Empty (The_Table : Symbol_Kind) return Boolean;

    procedure In_Text (The_Table : Symbol_Kind);

private
    package Symbol_Map is
       new String_Map_Generic (Size => 127,
                               Range_Type => Object.Reference,
                               Ignore_Case => True);
    type Symbol_Kind is
        record
            Iter : Symbol_Map.Iterator;
            Map : Symbol_Map.Map;
        end record;
end Table;