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 - metrics - download

⟦b724bfb92⟧ TextFile

    Length: 474 (0x1da)
    Types: TextFile
    Names: »B«

Derivation

└─⟦180fe333a⟧ Bits:30000405 8mm tape, Rational 1000, SW CATALOG, 10_20_0
└─⟦180fe333a⟧ Bits:30000537 8mm tape, Rational 1000, SW Catalog 10_20_0
    └─⟦5cb1d1d7f⟧ »DATA« 
        └─⟦3b1ee7bd8⟧ 
            └─⟦this⟧ 

TextFile

separate (Database_Interface)
function Concat (L1, L2 : Language_Features_List)
                return Language_Features_List is
    Temp : Language_Features_List;
    Temp2 : Language_Features_List := L2;
begin
    Temp := Copy (L1);
    if Empty (L2) then
        return Temp;
    end if;
    First (Temp2);
    loop
        Insert_After (Temp, Current_Element (Temp2));
        exit when Tail_Node (Temp2);
        Next (Temp2);
    end loop;
    return Temp;
end Concat;