DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T V ┃
Length: 1202 (0x4b2) Types: TextFile Names: »V«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧
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 => 160, Range_Type => Object.Reference, Ignore_Case => True); type Symbol_Kind is record Iter : Symbol_Map.Iterator; Map : Symbol_Map.Map; end record; end Table;