DeepCopy (FloatNamedArraylist function)

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Deep Copy FloatNamedArraylist (FloatNamedArraylist class)


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

Syntax

%outFltNal = fltNal:DeepCopy

Syntax terms

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

Usage notes

  • Although FloatNamedArraylist objects in general are deep copyable, a particular FloatNamedArraylist might contain references to non-deep-copyable objects, which disallows deep copy of that specific FloatNamedArraylist.

See also