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 - downloadIndex: ┃ T V ┃
Length: 1465 (0x5b9) Types: TextFile Names: »V«
└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13 └─ ⟦124ff5788⟧ »DATA« └─⟦this⟧ └─⟦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⟧ └─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦9b477e385⟧ └─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16 └─ ⟦6f12a12be⟧ »DATA« └─⟦9b477e385⟧ └─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04 └─ ⟦d65440be7⟧ »DATA« └─⟦9b477e385⟧ └─⟦this⟧
with Text_Io; -- This package is used to produce neatly formatted tables with centered -- headers and even amounts of white space between the columns. The first -- N calls should be to header, which defines a header and a type of -- justification for the items that will go into each column. Then the M*N -- items of an M line table are sent into the package a row at a time. An -- item is defined by either a single call to Item, or a series of zero or -- more calls to Subitem terminated by a call to Last_Subitem. Multiple -- parts of an item are separated by the subitem separator. After all the -- items have been defined, the table is output with a call to Display. -- The package internally allocates enough memory to save a copy of the -- entire table. It is therefore a good idea to instantiate this -- procedure in a local frame so that all the memory it allocates will go -- away when the frame does. generic Number_Of_Columns : Positive; Subitem_Separator : String := " "; package Table_Formatter is type Adjust is (Left, Right, Centered); procedure Header (S : String; Format : Adjust := Left); procedure Item (S : String); procedure Subitem (S : String); procedure Last_Subitem; procedure Display (On_File : Text_Io.File_Type); type Field_List is array (Integer range <>) of Positive; procedure Sort (On_Field : Positive := 1); procedure Sort (On_Fields : Field_List); end Table_Formatter;