Audit (GenericNamedArraylist subroutine): Difference between revisions
mNo edit summary |
m (→Examples) |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Template:GenericNamedArraylist:Audit subtitle}} | {{Template:GenericNamedArraylist:Audit subtitle}} | ||
This subroutine displays the contents of a <var>[[FloatNamedArraylist class|FloatNamedArraylist]]</var>, <var>[[NamedArraylist class|NamedArraylist]]</var>, or <var>[[UnicodeNamedArraylist class|UnicodeNamedArraylist]]</var> in a readable form, useful for debugging, for example. <var>Audit</var> is identical to <var>[[Print ( | This subroutine displays the contents of a <var>[[FloatNamedArraylist class|FloatNamedArraylist]]</var>, <var>[[NamedArraylist class|NamedArraylist]]</var>, or <var>[[UnicodeNamedArraylist class|UnicodeNamedArraylist]]</var> in a readable form, useful for debugging, for example. <var>Audit</var> is identical to <var>[[Print (GenericNamedArraylist subroutine)|Print]]</var> and <var>[[Trace (GenericNamedArraylist subroutine)|Trace]]</var>, except the result is sent to the <var class="product">Model 204</var> audit trail (like the <var class="product">User Language</var> <var>Audit</var> statement). | ||
==Syntax== | ==Syntax== | ||
Line 7: | Line 7: | ||
===Syntax terms=== | ===Syntax terms=== | ||
{{Template:PrintAuditTrace GenNamedArraylist syntax terms}} | |||
<div id="Usage Notes"></div><!--In case there are old links to this--> | <div id="Usage Notes"></div><!--In case there are old links to this--> | ||
==Usage notes== | ==Usage notes== | ||
<ul> | <ul> | ||
<li>All errors in <var> | <li>All errors in <var>Audit</var> result in request cancellation. | ||
</ul> | </ul> | ||
==Examples== | ==Examples== | ||
To see what <var>Audit</var> displays are like, see the <var>Print</var> method calls in [[Collections#Printing_a_collection|"Printing a collection"]]. | |||
==See also== | ==See also== | ||
<ul> | <ul> |
Latest revision as of 21:58, 8 August 2012
Audit items (FloatNamedArraylist, NamedArraylist, and UnicodeNamedArraylist classes)
This subroutine displays the contents of a FloatNamedArraylist, NamedArraylist, or UnicodeNamedArraylist in a readable form, useful for debugging, for example. Audit is identical to Print and Trace, except the result is sent to the Model 204 audit trail (like the User Language Audit statement).
Syntax
anyNal:Audit[( [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 (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, name required, 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. 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 which defaults to 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 which defaults to 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 Audit result in request cancellation.
Examples
To see what Audit displays are like, see the Print method calls in "Printing a collection".
See also
- Print and Trace are the same as Audit except they send their output to the user's standard output and selected trace destinations, respectively.