DeepCopy (CharacterMap function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (AllowNullObject methods)
 
mNo edit summary
Line 1: Line 1:
{{Template:CharacterMap:DeepCopy subtitle}}
{{Template:CharacterMap:DeepCopy subtitle}}
<p>
</p>


For more information about copyability, see [[Copying objects]].
For more information about copyability, see [[Copying objects]].
==Syntax==
==Syntax==
{{Template:CharacterMap:DeepCopy syntax}}
{{Template:CharacterMap:DeepCopy syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
Line 17: Line 17:
==Usage notes==
==Usage notes==
<ul>
<ul>
<li>The method object (''characterMap'') may be null.
<li>The method object (<var class="term">characterMap</var>) may be <var>Null</var>.
The output of a copy of a null object is a null object.
The output of a deep copy of a <var>Null</var> object is a <var>Null</var> object.
</ul>
</ul>
==See also==
==See also==
{{Template:CharacterMap:DeepCopy footer}}
{{Template:CharacterMap:DeepCopy footer}}

Revision as of 19:20, 1 December 2011

"Deepcopy" specified CharacterMap object (CharacterMap class)


For more information about copyability, see Copying objects.

Syntax

%outCharacterMap = characterMap:DeepCopy

Syntax terms

%outCharacterMap A CharacterMap object variable to contain the deep copied object.
characterMap A CharacterMap object variable, which may be Null.

Usage notes

  • The method object (characterMap) may be Null. The output of a deep copy of a Null object is a Null object.

See also