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

⟦8079069a2⟧ TextFile

    Length: 847 (0x34f)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

package Standard_String is
    subtype Typic is Natural range 0 .. 255;
    Typic_Size : constant Natural := 80;
    type Object (Max_Size : Typic := Typic_Size) is limited private;

    procedure Add_Char (A_String : in out Object; A_Char : Character);
    procedure Reset (A_String : in out Object);
    function Length (A_String : Object) return Natural;
    function Get_Contents (A_String : Object) return String;  
    procedure Put_Contents (A_String : in out Object; S : String);
    procedure Copy (Source : in Object; Target : out Object);
    function "=" (Left, Rigth : Object) return Boolean;

private

    subtype Contents is String;
    type Object (Max_Size : Typic := Typic_Size) is
        record
            The_Length : Natural := 0;
            The_Contents : Contents (1 .. Max_Size);
        end record;
end Standard_String;