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: ┃ B T

⟦ff810c679⟧ TextFile

    Length: 1255 (0x4e7)
    Types: TextFile
    Names: »B«

Derivation

└─⟦bad92a95e⟧ Bits:30000535 8mm tape, Rational 1000, RPC 1_0_2
    └─ ⟦bb34fe6e2⟧ »DATA« 
        └─⟦15d8b76c6⟧ 
            └─⟦this⟧ 

TextFile

with Unchecked_Conversion;
package body Interchange_Float is
    function Conversion is new Unchecked_Conversion
                                  (Float, Interchange_Defs.Float);
    function Conversion is new Unchecked_Conversion
                                  (Interchange_Defs.Float, Float);
    function Conversion is new Unchecked_Conversion
                                  (Long_Float, Interchange_Defs.Long_Float);
    function Conversion is new Unchecked_Conversion
                                  (Interchange_Defs.Long_Float, Long_Float);

    function Convert (X : Interchange_Float.Float)
                     return Interchange_Defs.Float is
    begin
        return Conversion (X);
    end Convert;

    function Convert (X : Interchange_Float.Long_Float)
                     return Interchange_Defs.Long_Float is
    begin
        return Conversion (X);
    end Convert;

    function Convert (X : Interchange_Defs.Long_Float)
                     return Interchange_Float.Long_Float is
    begin
        return Conversion (X);
    end Convert;

    function Convert (X : Interchange_Defs.Float)
                     return Interchange_Float.Float is
    begin
        return Conversion (X);
    end Convert;
end Interchange_Float;