Audit (Arraylist subroutine): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 16: Line 16:


<tr><th><var>NumWidth</var></th>
<tr><th><var>NumWidth</var></th>
<td>The number of bytes in the display of each item to use for the item number. This is an optional, but <var>[[Methods#Named parameters|NameRequired]]</var>, parameter; if you specify a value, the parameter name <var class="term">NumWidth</var> is required.<p>
<td>The number of bytes in the display of each item to use for the item number. This is an optional, [[Methods#Named parameters|name required]], parameter; if you specify a value, the parameter name <var>NumWidth</var> is required.<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>
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>NumWidth</var> value 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>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 the item number from the item value. This is an optional, but <var>[[Methods#Named parameters|NameRequired]]</var> argument; if you specify a value, the parameter name <var class="term">Separator</var> is required.<p>The default value for <var>Separator</var> is a colon (<code>':'</code>); and a blank always follows the <var class="term">Separator</var> string.</p></td></tr>
<td>A string, 15 characters or less, to be used to separate the item number from the item value. This is an optional, name required, argument; if you specify a value, the parameter name <var>Separator</var> is required.
<p>The default value for <var>Separator</var> is a colon (<code>:</code>); and a blank always follows the <var>Separator</var> string.</p></td></tr>


<tr><th><var>Start</var></th>
<tr><th><var>Start</var></th>
<td>The item number of the initial item  in the output display. This is an optional, but <var>[[Methods#Named parameters|NameRequired]]</var>, argument; if you specify a value, the parameter name <var class="term">Start</var> is required.<p>The default value for <var>Start</var> is <code>1</code>; to start with the first item in the <var class="term">al</var>.</p></td></tr>
<td>The item number of the initial item  in the output display. This is an optional, name required, argument; if you specify a value, the parameter name <var>Start</var> is required.<p>The default value for <var>Start</var> is <code>1</code>; to start with the first item in the <var class="term">al</var>.</p></td></tr>


<tr><th><var>MaxItems</var></th>
<tr><th><var>MaxItems</var></th>
<td>The maximum number of items to display. A zero or negative value means to display all the items. This is an optional, but <var>[[Methods#Named parameters|NameRequired]]</var>, argument; if you specify a value, the parameter name <var class="term">MaxItems</var> is required.<p>The default value for <var>MaxItems</var> is <code>0</code>; to display all items from <var class="term">Start</var> to the end of the <var class="term">al</var>.</p></td></tr>
<td>The maximum number of items to display. A zero or negative value means to display all the items. This is an optional, name required, argument; if you specify a value, the parameter name <var>MaxItems</var> is required.
<p>The default value for <var>MaxItems</var> is <code>0</code>; to display all items from <var>Start</var> to the end of the <var class="term">al</var>.</p></td></tr>


<tr><th><var>Label</var></th>
<tr><th><var>Label</var></th>
<td>A literal string that gets output before each line. This is useful for "tagging" lines to make them more identifiable. This is an optional, but <var>[[Methods#Named parameters|NameRequired]]</var>, argument; if you specify a value, the parameter name <var class="term">Label</var> is required.<p>The default value for <var>Label</var> is the null string <code><nowiki>''</nowiki></code>; to <b><i>not</i></b> display any additional "tag" information.</p></td></tr>
<td>A literal 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; if you specify a value, the parameter name <var>Label</var> is required.
<p>The default value for <var>Label</var> is the null string <code><nowiki>''</nowiki></code>; to <b><i>not</i></b> display any additional "tag" information.</p></td></tr>
</table>
</table>


Line 39: Line 43:


==Examples==
==Examples==
For examples of <var>Audit</var> method calls, see [[Collections#Printing a collection|Printing a collection]].
For examples of <var>Audit</var> method calls, see [[Collections#Printing a collection|"Printing a collection"]].


==See also==
==See also==
{{Template:Arraylist:Audit footer}}
{{Template:Arraylist:Audit footer}}

Revision as of 20:43, 7 August 2012

Audit Arraylist (Arraylist class)


The Audit subroutine displays the contents of an Arraylist in a readable form on the Model 204 audit trail. The listed item values are displayed in ascending order by their position and, by default, are preceded by their item number, a colon and a blank space (': ').

Audit is identical to Print and Trace, except that their output is sent to the and user's standard output (terminal) and the currently selected trace stream respectively.

Syntax

al:Audit[( [itemFunction], [NumWidth= number], [Separator= string], - [Start= number], [MaxItems= number], [Label= string])]

Syntax terms

al An Arraylist object.
itemFunction A function that is to be applied to al items to produce the audit trail output. itemFunction must take no parameters and produce an intrinsic (be that Float, String, Fixed 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, name required, parameter; if you specify a value, the parameter name NumWidth is required.

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 value must be a number between -1 and 10 inclusive. If you specify a value of 0, the item number is not displayed.

If NumWidth is -1, 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.

Separator A string, 15 characters or less, to be used to separate the item number from the item value. This is an optional, name required, argument; if you specify a value, the parameter name Separator is required.

The default value for Separator is a colon (:); and a blank always follows the Separator string.

Start The item number of the initial item in the output display. This is an optional, name required, argument; if you specify a value, the parameter name Start is required.

The default value for Start is 1; to start with the first item in the al.

MaxItems The maximum number of items to display. A zero or negative value means to display all the items. This is an optional, name required, argument; if you specify a value, the parameter name MaxItems is required.

The default value for MaxItems is 0; to display all items from Start to the end of the al.

Label A literal 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; if you specify a value, the parameter name Label is required.

The default value for Label is the null string ''; to not display any additional "tag" information.

Usage notes

  • All errors in Audit result in request cancellation.
  • Print and Trace are the same as Audit except they send their output to the current user output device (terminal) or currently selected trace destinations, respectively.

Examples

For examples of Audit method calls, see "Printing a collection".

See also