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

⟦fd9ebc022⟧ TextFile

    Length: 1058 (0x422)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

-- Messages Unaires :
-- En_Texte
-- Valeur
-- En_Majuscules
-- En_Minuscules
-- Avec_Capitales
-- Ta_Longueur

-- Messages Binaires :
-- +
-- > < >= <= =

with Object;
with Message;

package Class_String is
    function Send (This_Message : Message.Keyword; To : Object.Reference)
                  return Object.Reference;

    function Send (This_Message : Message.Binary; To : Object.Reference)
                  return Object.Reference;

    function Send (This_Message : Message.Unary; To : Object.Reference)
                  return Object.Reference;

    function Create return Object.Reference;
    function Create (Str : String) return Object.Reference;
    function Create (Str : Object.Tiny_String) return Object.Reference;

    function Get (Index : Object.Index) return Object.Tiny_String;

    function How_Many return Object.Index;

    procedure Put (An_Object : Object.Reference);

private

    Table : array (Object.Index range 1 .. Object.Max_String) of
               Object.Tiny_String;

    Last : Object.Index := 1;

end Class_String;