Copy (UnicodeNamedArraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 11: Line 11:
{{Template:UnicodeNamedArraylist:Copy syntax}}
{{Template:UnicodeNamedArraylist:Copy syntax}}
===Syntax terms===
===Syntax terms===
<dl>
<table class="syntaxTable">
<dt><i>%cop</i>
<tr><th><i>%cop</i></th>
<dd>A UnicodeNamedArraylist to contain the copy of ''%unamrayl'', the
<td>A UnicodeNamedArraylist to contain the copy of ''%unamrayl'', the method object UnicodeNamedArraylist. </td></tr>
method object UnicodeNamedArraylist.
<tr><th><i>%unamrayl</i></th>
<dt><i>%unamrayl</i>
<td>A UnicodeNamedArraylist object.</td></tr>
<dd>A UnicodeNamedArraylist object.
</table>
 
</dl>
==See also==
==See also==
{{Template:UnicodeNamedArraylist:Copy footer}}
{{Template:UnicodeNamedArraylist:Copy footer}}

Revision as of 23:09, 31 January 2011

Copy UnicodeNamedArraylist (UnicodeNamedArraylist class)


This function makes a "shallow" copy of the UnicodeNamedArraylist method object %unamrayl. If %unamrayl contains objects, they are not copied. If %unamrayl is Null, a Null is returned.

For more information about copyability, see Copying objects.

Syntax

%outUniNal = uniNal:Copy

Syntax terms

%cop A UnicodeNamedArraylist to contain the copy of %unamrayl, the method object UnicodeNamedArraylist.
%unamrayl A UnicodeNamedArraylist object.

See also