DeepCopy (UnicodeNamedArraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (match syntax table to diagram, couple of tags)
Line 1: Line 1:
{{Template:UnicodeNamedArraylist:DeepCopy subtitle}}
{{Template:UnicodeNamedArraylist:DeepCopy subtitle}}


This function
<var>DeepCopy</var> makes a "deep copy" of the <var>UnicodeNamedArraylist</var> method object, <var class="term">uniNal</var>. If <var class="term">uniNal</var> contains objects, they <b><i>are</i></b> copied. If <var class="term">uniNal</var> is Null, a Null is returned.
makes a "deep copy" of the UnicodeNamedArraylist method object, ''%unamrayl''.
If ''%unamrayl'' contains objects, they '''are''' copied.
If ''%unamrayl'' is Null, a Null is returned.


For more information about copyability, see [[Copying objects]].
==Syntax==
==Syntax==
{{Template:UnicodeNamedArraylist:DeepCopy syntax}}
{{Template:UnicodeNamedArraylist:DeepCopy syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%dcop</th>
<tr><th>%outUniNal</th>
<td>A UnicodeNamedArraylist to contain the deep copy of ''%unamrayl''. </td></tr>
<td>A <var>UnicodeNamedArraylist</var> to contain the deep copy of <var class="term">uniNal</var>. </td></tr>
<tr><th>%unamrayl</th>
<tr><th>uniNal</th>
<td>A UnicodeNamedArraylist object.</td></tr>
<td>A <var>UnicodeNamedArraylist</var> object.</td></tr>
</table>
</table>
==See also==
==See also==
<ul><li>For more information about copyability, see [[Copying objects|"Copying objects"]].</ul>
{{Template:UnicodeNamedArraylist:DeepCopy footer}}
{{Template:UnicodeNamedArraylist:DeepCopy footer}}

Revision as of 07:51, 2 March 2011

Deep Copy UnicodeNamedArraylist (UnicodeNamedArraylist class)


DeepCopy makes a "deep copy" of the UnicodeNamedArraylist method object, uniNal. If uniNal contains objects, they are copied. If uniNal is Null, a Null is returned.

Syntax

%outUniNal = uniNal:DeepCopy

Syntax terms

%outUniNal A UnicodeNamedArraylist to contain the deep copy of uniNal.
uniNal A UnicodeNamedArraylist object.

See also