DeepCopy (FloatNamedArraylist 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:FloatNamedArraylist:DeepCopy subtitle}}
{{Template:FloatNamedArraylist:DeepCopy subtitle}}


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


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

Revision as of 07:42, 2 March 2011

Deep Copy FloatNamedArraylist (FloatNamedArraylist class)


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

Syntax

%outFltNal = fltNal:DeepCopy

Syntax terms

%outFltNal A FloatNamedArraylist to contain the deep copy of fltNal.
fltNal A FloatNamedArraylist object.

See also