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

⟦db91ddc4b⟧ TextFile

    Length: 755 (0x2f3)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Arguments;
with Message;
with Object;
with Scanner;

package String_Class is

    Incorrect_Method, Incorrect_Nb_Args, Instance_Table_Full : exception;

    type Struct_Table is private;


    function Send (To_Object : Object.Reference;
                   The_Message : Message.Selector;
                   With_Arguments : Arguments.List := Arguments.Void_Arguments)
                  return Object.Reference;

    function Create (Value : String) return Object.Reference;

    function In_Text (The_String : Object.Reference) return String;

private

    type Indicator is (Unused, Used);

    type Struct_Table is
        record
            Indic : Indicator := Unused;
            Value : Scanner.B_String;
        end record;

end String_Class;