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

⟦c21b4fe1e⟧ TextFile

    Length: 1454 (0x5ae)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Object, Message, Arguments, 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) return Object.Reference;

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

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

private

    Nb_Max_String : constant := 100;

    type Indicator is (Unused, Used);

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


    function First_Free return Natural;

    function Delete (The_String : Object.Reference) return Object.Reference;

    function Size (The_String : Object.Reference) return Natural;

    function Lower_Case (The_String : Object.Reference) return Object.Reference;

    function Upper_Case (The_String : Object.Reference) return Object.Reference;

    function Capitalize (The_String : Object.Reference) return Object.Reference;

    function "+" (First_String : Object.Reference;
                  Second_String : Object.Reference) return Object.Reference;

    function Is_Equal (First_String : Object.Reference;
                       Second_String : Object.Reference)
                      return Object.Reference;

end String_Class;