| 
 | 
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes | 
 
This is an automatic "excavation" of a thematic subset of
 See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software.  | 
top - metrics - downloadIndex: B T
    Length: 2194 (0x892)
    Types: TextFile
    Names: »B«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 
└─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16
    └─⟦6f12a12be⟧ »DATA« 
        └─⟦this⟧ 
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 
with Message_Interchange;
with Signature;
with String_Utilities;
with Unchecked_Deallocation;
package body Method is
    use Bs;
    Sep : Character renames Message_Interchange.Separator;
    function Sup (S : String) return String renames String_Utilities.Upper_Case;
    function Create (Name : String; Signature : Standard.Signature.Object)
                    return Method.Object is
    begin
        return Object'(Name => Bs.Value (Sup (Name)), Signature => Signature);
    end Create;
    function Image (Method : Standard.Method.Object) return String is
    begin
        return Bs.Image (Method.Name) & Sep &
                  Signature.Image (Method.Signature);
    end Image;
    function Value (Of_String : String) return Method.Object is
        S : String renames Of_String;
        Signature : Positive := Of_String'First;
    begin
        loop
            exit when S (Signature) = Sep;
            Signature := Signature + 1;
        end loop;
        return Object'(Name => Bs.Value (Sup (S (S'First .. Signature - 1))),
                       Signature => Standard.Signature.Value
                                       (S (Signature + 1 .. S'Last)));
    end Value;
    function Is_Equal (Left, Right : Method.Object) return Boolean is
    begin
        return Left.Name = Right.Name and Signature.Is_Equal
                                             (Left.Signature, Right.Signature);
    end Is_Equal;
    function Is_Compatible (Left, Right : Method.Object) return Boolean is
    begin
        return Left.Name = Right.Name and Signature.Is_Compatible
                                             (Left.Signature, Right.Signature);
    end Is_Compatible;
    function Get_Name (Method : Standard.Method.Object) return String is
    begin
        return Bs.Image (Method.Name);
    end Get_Name;
    function Get_Signature (Method : Standard.Method.Object)
                           return Signature.Object is
    begin
        return Method.Signature;
    end Get_Signature;
    procedure Strip_Signature (Method : in out Standard.Method.Object) is
    begin
        Signature.Strip_Values (Method.Signature);
    end Strip_Signature;
end Method;