Copy (FloatNamedArraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
m (match syntax table to diagram , lot's of tags)
Line 1: Line 1:
{{Template:FloatNamedArraylist:Copy subtitle}}
{{Template:FloatNamedArraylist:Copy subtitle}}


This function
<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 Null, a Null is returned.
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]].
For more information about copyability, see [[Copying objects]].
Line 12: Line 8:
===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">%fnamrayl</var>, the method FloatNamedArraylist. </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==
{{Template:FloatNamedArraylist:Copy footer}}
{{Template:FloatNamedArraylist:Copy footer}}

Revision as of 07:25, 2 March 2011

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.

For more information about copyability, see Copying objects.

Syntax

%outFltNal = fltNal:Copy

Syntax terms

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

See also