Print (GenericNamedArraylist subroutine): Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 10: | Line 10: | ||
<td>A <var>FloatNamedArraylist</var>, <var>NamedArraylist</var>, or <var>UnicodeNamedArraylist</var> object. </td></tr> | <td>A <var>FloatNamedArraylist</var>, <var>NamedArraylist</var>, or <var>UnicodeNamedArraylist</var> object. </td></tr> | ||
<tr><th>itemFunction</th> | <tr><th>itemFunction</th> | ||
<td>The method that is to be applied to <var class="term">anyNal</var> items to produce the printed output. The <var class="term">itemFunction</var> method must take no parameters and produce an <var>[[Intrinsic classes|intrinsic]]</var> (be that <var>Float</var>, <var>String</var>, or <var>Unicode</var>) value. It may be a system or user-written method, a class | <td>The method that is to be applied to <var class="term">anyNal</var> items to produce the printed output. The <var class="term">itemFunction</var> method must take no parameters and produce an <var>[[Intrinsic classes|intrinsic]]</var> (be that <var>Float</var>, <var>String</var>, or <var>Unicode</var>) value. It may be a system or user-written method, a class <var>Variable</var> or <var>Property</var>, a local method, or a [[Method variables|method variable]]. | ||
<p>The default value of <var class="term">itemFunction</var> is <var>[[Collections#Examples using class or local ToString|ToString]]</var>.</p></td></tr> | <p>The default value of <var class="term">itemFunction</var> is <var>[[Collections#Examples using class or local ToString|ToString]]</var>.</p></td></tr> | ||
<tr><th><var>NumWidth</var></th> | <tr><th><var>NumWidth</var></th> | ||
Line 16: | Line 16: | ||
<p>Item numbers are right-justified within the indicated number of bytes, and they are truncated on the left if the length of the item number exceeds the space allocated for it. The <var class="Term">NumWidth</var> must be a number between <code>-1</code> and <code>10</code> inclusive. If you specify a value of <code>0</code>, the item number is not displayed.</p><p>If <var class="term">NumWidth</var> is <code>-1</code>, the default, the method uses the minimum number of bytes required to show the item number. For example, one byte is required for item number 5, while five bytes are required for item number 98764.</p></td></tr> | <p>Item numbers are right-justified within the indicated number of bytes, and they are truncated on the left if the length of the item number exceeds the space allocated for it. The <var class="Term">NumWidth</var> must be a number between <code>-1</code> and <code>10</code> inclusive. If you specify a value of <code>0</code>, the item number is not displayed.</p><p>If <var class="term">NumWidth</var> is <code>-1</code>, the default, the method uses the minimum number of bytes required to show the item number. For example, one byte is required for item number 5, while five bytes are required for item number 98764.</p></td></tr> | ||
<tr><th><var>Separator</var></th> | <tr><th><var>Separator</var></th> | ||
<td>A string, 15 characters or less, to be used to separate both the item number and the item name from what follows. That is, the <var class="term"> | <td>A string, 15 characters or less, to be used to separate both the item number and the item name from what follows. That is, the <var class="term">string</var> you specify appears twice: once after the item number and once after the item name. | ||
<p>This is an optional, name required, argument whose default is a colon followed by a space (<code>: </code>).</p> </td></tr> | <p>This is an optional, name required, argument whose default is a colon followed by a space (<code>: </code>).</p> </td></tr> | ||
<tr><th><var>Start</var></th> | <tr><th><var>Start</var></th> |
Revision as of 18:32, 7 August 2012
Print items (FloatNamedArraylist, NamedArraylist, and UnicodeNamedArraylist classes)
This subroutine displays the contents of a FloatNamedArraylist, NamedArraylist, or UnicodeNamedArraylist on the user's standard output device, typically a terminal. The list item values, displayed in order by their subscript names, are preceded by their item number and item name, both of which by default are followed by a colon and a blank space (:
).
Syntax
anyNal:Print[( [itemFunction], [NumWidth= number], [Separator= string], - [Start= number], [MaxItems= number], [Label= string], - [NameWidth= number])]
Syntax terms
anyNal | A FloatNamedArraylist, NamedArraylist, or UnicodeNamedArraylist object. |
---|---|
itemFunction | The method that is to be applied to anyNal items to produce the printed output. The itemFunction method must take no parameters and produce an intrinsic (be that Float, String, or Unicode) value. It may be a system or user-written method, a class Variable or Property, a local method, or a method variable.
The default value of itemFunction is ToString. |
NumWidth | The number of bytes in the display of each item to use for the item number. This is an optional, NameRequired, parameter.
Item numbers are right-justified within the indicated number of bytes, and they are truncated on the left if the length of the item number exceeds the space allocated for it. The NumWidth must be a number between If NumWidth is |
Separator | A string, 15 characters or less, to be used to separate both the item number and the item name from what follows. That is, the string you specify appears twice: once after the item number and once after the item name.
This is an optional, name required, argument whose default is a colon followed by a space ( |
Start | The item number of the initial item in the output display. This is an optional, name required, argument which defaults to 1 . |
MaxItems | The maximum number of items to display. A zero or negative value means to display all the items from Start to the end of the anyNal.
This is an optional, name required, argument which defaults to zero. |
Label | A string that gets output before each line. This is useful for "tagging" lines to make them more identifiable.
This is an optional, name required, argument whose default is a null string. |
NameWidth | The number of bytes in the display of the item name. This must be a number from -1 through 255. This is an optional, name required argument.
Item names are left-justified within the indicated number of bytes, and they are truncated on the right if the length of the item name exceeds the space allocated for it. For a UnicodeNamedArraylist, the items names are converted to EBCDIC (using character encoding for untranslatable characters). This can result in names being truncated in the middle of a character encoding, as shown in "Examples of subscript display format for named collections" The default is |
Usage notes
- All errors in Print result in request cancellation.
Examples
For examples of Print method calls, see "Printing a collection".
See also
- Audit and Trace are similar to Print except they send their output to the Model 204 audit trail and trace destinations, respectively.