DeepCopy (FloatNamedArraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (1 revision)
Line 1: Line 1:
<span style="font-size:120%; color:black"><b><section begin=dpl_desc/>Deep Copy FloatNamedArraylist<section end=dpl_desc/></b></span>
{{Template:FloatNamedArraylist:DeepCopy subtitle}}
[[Category:FloatNamedArraylist methods|DeepCopy function]]
<!--DPL?? Category:FloatNamedArraylist methods|DeepCopy function: Deep Copy FloatNamedArraylist-->
<p>
DeepCopy is a member of the [[FloatNamedArraylist class]].
</p>


This function
This function
makes a &ldquo;deep copy&rdquo; of the FloatNamedArraylist method object, ''%fnamrayl''.
makes a "deep copy" of the FloatNamedArraylist method object, ''%fnamrayl''.
If ''%fnamrayl'' contains objects, they '''are''' copied.
If ''%fnamrayl'' contains objects, they '''are''' copied.
If ''%fnamrayl'' is Null, a Null is returned.
If ''%fnamrayl'' is Null, a Null is returned.
Line 13: Line 8:
For more information about copyability, see [[Copying objects]].
For more information about copyability, see [[Copying objects]].
==Syntax==
==Syntax==
<p class="code">%dcop = %fnamrayl:DeepCopy
{{Template:FloatNamedArraylist:DeepCopy syntax}}
</p>
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
Line 22: Line 16:
<td>A FloatNamedArraylist object.</td></tr>
<td>A FloatNamedArraylist object.</td></tr>
</table>
</table>
==See also==
{{Template:FloatNamedArraylist:DeepCopy footer}}

Revision as of 04:19, 7 February 2011

Deep Copy FloatNamedArraylist (FloatNamedArraylist class)


This function 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

%outFltNal = fltNal:DeepCopy

Syntax terms

%dcop A FloatNamedArraylist to contain the deep copy of %fnamrayl.
%fnamrayl A FloatNamedArraylist object.

See also