Copy (FloatNamedArraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
 
(7 intermediate revisions by 4 users not shown)
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-->
<var>Copy</var> makes a "shallow" copy of the <var>FloatNamedArraylist</var> method object <var class="term">fltNal</var>.  If <var class="term">fltNal</var> contains objects, they are <b><i>not</i></b> copied.  If <var class="term">fltNal</var> is a <var>Null</var>, a <var>Null</var> is returned.
<p>
Copy is a member of the [[FloatNamedArraylist class]].
</p>


This function
==Syntax==
makes a &ldquo;shallow&rdquo; copy of the FloatNamedArraylist method
{{Template:FloatNamedArraylist:Copy syntax}}
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==
<p class="code">%cop = %fnamrayl:Copy
</p>
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%cop</th>
<tr><th>%outFltNal</th>
<td>A FloatNamedArraylist to contain the copy of ''%fnamrayl'', the method FloatNamedArraylist. </td></tr>
<td>A <var>FloatNamedArraylist</var> to contain the copy of <var class="term">fltNal</var>, the method object <var>FloatNamedArraylist</var>. </td></tr>
<tr><th>%fnamrayl</th>
 
<td>A FloatNamedArraylist object.</td></tr>
<tr><th>fltNal</th>
<td>A <var>FloatNamedArraylist</var> object, which may be <var>Null</var>.</td></tr>
</table>
</table>
==See also==
<ul>
<li>For more information about copyability, see [[Copying objects|"Copying objects"]].
</ul>
{{Template:FloatNamedArraylist:Copy footer}}

Latest revision as of 22:34, 8 August 2012

Copy FloatNamedArraylist (FloatNamedArraylist class)


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

Syntax

%outFltNal = fltNal:Copy

Syntax terms

%outFltNal A FloatNamedArraylist to contain the copy of fltNal, the method object FloatNamedArraylist.
fltNal A FloatNamedArraylist object, which may be Null.

See also