| 
 | 
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: T V
    Length: 1473 (0x5c1)
    Types: TextFile
    Names: »V«
└─⟦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 Bounded_String_Generic;
package Parameter is
    type Object is private;
    Null_Parameter : constant Parameter.Object;
    Void : constant String := ">>VOID<<";
    function Create (Name : String; Class : String; Value : String)
                    return Parameter.Object;
    function Image (Of_Parameter : Parameter.Object) return String;
    function Value (Of_String : String) return Parameter.Object;
    function Is_Valued (Parameter : Standard.Parameter.Object) return Boolean;
    function Is_Null (Parameter : Standard.Parameter.Object) return Boolean;
    function Is_Equal (Left, Right : Parameter.Object) return Boolean;
    function Is_Compatible (Left, Right : Parameter.Object) return Boolean;
    function Get_Name (Parameter : Standard.Parameter.Object) return String;
    function Get_Class (Parameter : Standard.Parameter.Object) return String;
    function Get_Value (Parameter : Standard.Parameter.Object) return String;
    procedure Strip_Value (Parameter : in out Standard.Parameter.Object);
private  
    package Bs is new Bounded_String_Generic (Size => 80);
    type Object is
        record
            Name : Bs.Variable_String;
            Class : Bs.Variable_String;
            Value : Bs.Variable_String;
        end record;
    Null_Parameter : constant Parameter.Object :=
       Object'(Name => Bs.Value (Void),
               Class => Bs.Value (Void),
               Value => Bs.Value (Void));
end Parameter;