Copy (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/>Copy FloatNamedArraylist<section end=dpl_desc/></b></span>
{{Template:FloatNamedArraylist:Copy subtitle}}
[[Category:FloatNamedArraylist methods|Copy function]]
<!--DPL?? Category:FloatNamedArraylist methods|Copy function: Copy FloatNamedArraylist-->
<p>
Copy is a member of the [[FloatNamedArraylist class]].
</p>


This function
This function
makes a &ldquo;shallow&rdquo; copy of the FloatNamedArraylist method
makes a "shallow" copy of the FloatNamedArraylist method
object ''%fnamrayl''.
object ''%fnamrayl''.
If ''%fnamrayl'' contains objects, they are '''not''' copied.
If ''%fnamrayl'' contains objects, they are '''not''' copied.
Line 14: Line 9:
For more information about copyability, see [[Copying objects]].
For more information about copyability, see [[Copying objects]].
==Syntax==
==Syntax==
<p class="code">%cop = %fnamrayl:Copy
{{Template:FloatNamedArraylist:Copy syntax}}
</p>
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
Line 23: Line 17:
<td>A FloatNamedArraylist object.</td></tr>
<td>A FloatNamedArraylist object.</td></tr>
</table>
</table>
==See also==
{{Template:FloatNamedArraylist:Copy footer}}

Revision as of 04:19, 7 February 2011

Copy FloatNamedArraylist (FloatNamedArraylist class)


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

For more information about copyability, see Copying objects.

Syntax

%outFltNal = fltNal:Copy

Syntax terms

%cop A FloatNamedArraylist to contain the copy of %fnamrayl, the method FloatNamedArraylist.
%fnamrayl A FloatNamedArraylist object.

See also