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

⟦d2fbc95f9⟧ TextFile

    Length: 2591 (0xa1f)
    Types: TextFile
    Names: »V«

Derivation

└─⟦5829e5ed5⟧ Bits:30000534 8mm tape, Rational 1000, RCI 2_0_5
    └─ ⟦c9a165082⟧ »DATA« 
        └─⟦2162db02b⟧ 
            └─⟦this⟧ 

TextFile

package String_Utilities is

    function Hash_String (S : String) return Integer;

    procedure Upper_Case (C : in out Character);
    procedure Lower_Case (C : in out Character);

    function Upper_Case (C : Character) return Character;
    function Lower_Case (C : Character) return Character;

    procedure Upper_Case (S : in out String);
    procedure Lower_Case (S : in out String);

    -- string returned has same 'First and 'Last as S
    function Upper_Case (S : String) return String;
    function Lower_Case (S : String) return String;



    function Number_To_String (Value : Integer;
                               Base : Natural := 10;
                               Width : Natural := 0;
                               Leading : Character := ' ') return String;

    procedure String_To_Number (Source : String;
                                Target : out Integer;
                                Worked : out Boolean;
                                Base : Natural := 10);

    function Strip_Leading
                (From : String; Filler : Character := ' ') return String;
    function Strip_Trailing
                (From : String; Filler : Character := ' ') return String;
    function Strip (From : String; Filler : Character := ' ') return String;

    -- Searches and compares
    -- Locate returns the index value in Within if found, 0 otherwise
    function Locate (Fragment : String;
                     Within : String;
                     Ignore_Case : Boolean := True) return Natural;

    function Locate (Fragment : Character;
                     Within : String;
                     Ignore_Case : Boolean := True) return Natural;

    function Reverse_Locate (Fragment : String;
                             Within : String;
                             Ignore_Case : Boolean := True) return Natural;

    function Reverse_Locate (Fragment : Character;
                             Within : String;
                             Ignore_Case : Boolean := True) return Natural;

    function Equal (Str1 : String;
                    Str2 : String;  
                    Ignore_Case : Boolean := True) return Boolean;

    function Less_Than (Str1 : String;
                        Str2 : String;  
                        Ignore_Case : Boolean := True) return Boolean;

    function Greater_Than (Str1 : String;
                           Str2 : String;  
                           Ignore_Case : Boolean := True) return Boolean;

    procedure Capitalize (S : in out String);
    function Capitalize (S : String) return String;

end String_Utilities;