DeepCopy (NamedArraylist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 5: Line 5:
If <var class="term">nal</var> contains objects, they '''are''' copied.
If <var class="term">nal</var> contains objects, they '''are''' copied.
If <var class="term">nal</var> is <var>Null</var>, a <var>Null</var> is returned.
If <var class="term">nal</var> is <var>Null</var>, a <var>Null</var> is returned.
For more information about copyability, see [[Copying objects|"Copying objects"]].


==Syntax==
==Syntax==

Revision as of 22:45, 8 August 2012

Deep Copy NamedArraylist (NamedArraylist class)


This function makes a "deep copy" of the NamedArraylist method object, nal. If nal contains objects, they are copied. If nal is Null, a Null is returned.

Syntax

%outNal = nal:DeepCopy

Syntax terms

%outNal A NamedArraylist to contain the deep copy of nal.
nal A NamedArraylist object, which may be Null.

See also