Copy (NamedArraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (match syntax table to diagram , lot's of tags)
m (AllowNullObject methods)
Line 10: Line 10:
<td>A <var>NamedArraylist</var> to contain the copy of <var class="term">nal</var>, the method <var>NamedArraylist</var>.</td></tr>
<td>A <var>NamedArraylist</var> to contain the copy of <var class="term">nal</var>, the method <var>NamedArraylist</var>.</td></tr>
<tr><th>nal</th>
<tr><th>nal</th>
<td>A <var>NamedArraylist</var> object.</td></tr>
<td>A <var>NamedArraylist</var> object, which may be <var>Null</var>.</td></tr>
</table>
</table>



Revision as of 23:53, 18 March 2011

Copy the NamedArraylist (NamedArraylist class)


Copy makes a "shallow" copy of the NamedArraylist method object nal. If nal contains objects, they are not copied. If nal is Null, a Null is returned.

Syntax

%outNal = nal:Copy

Syntax terms

%outNal A NamedArraylist to contain the copy of nal, the method NamedArraylist.
nal A NamedArraylist object, which may be Null.

See also