summaryrefslogtreecommitdiff
path: root/doc/classes/StringName.xml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/classes/StringName.xml')
-rw-r--r--doc/classes/StringName.xml41
1 files changed, 14 insertions, 27 deletions
diff --git a/doc/classes/StringName.xml b/doc/classes/StringName.xml
index af0074f080..4c2619e782 100644
--- a/doc/classes/StringName.xml
+++ b/doc/classes/StringName.xml
@@ -4,65 +4,52 @@
An optimized string type for unique names.
</brief_description>
<description>
- [StringName]s are immutable strings designed for general-purpose represention of unique names. [StringName] ensures that only one instance of a given name exists (so two [StringName]s with the same value are the same object). Comparing them is much faster than with regular [String]s, because only the pointers are compared, not the whole strings.
+ [StringName]s are immutable strings designed for general-purpose representation of unique names. [StringName] ensures that only one instance of a given name exists (so two [StringName]s with the same value are the same object). Comparing them is much faster than with regular [String]s, because only the pointers are compared, not the whole strings.
</description>
<tutorials>
</tutorials>
<methods>
<method name="StringName" qualifiers="constructor">
- <return type="StringName">
- </return>
+ <return type="StringName" />
<description>
Constructs an empty [StringName].
</description>
</method>
<method name="StringName" qualifiers="constructor">
- <return type="StringName">
- </return>
- <argument index="0" name="from" type="StringName">
- </argument>
+ <return type="StringName" />
+ <argument index="0" name="from" type="StringName" />
<description>
Constructs a [StringName] as a copy of the given [StringName].
</description>
</method>
<method name="StringName" qualifiers="constructor">
- <return type="StringName">
- </return>
- <argument index="0" name="from" type="String">
- </argument>
+ <return type="StringName" />
+ <argument index="0" name="from" type="String" />
<description>
Creates a new [StringName] from the given [String].
</description>
</method>
<method name="operator !=" qualifiers="operator">
- <return type="bool">
- </return>
- <argument index="0" name="right" type="String">
- </argument>
+ <return type="bool" />
+ <argument index="0" name="right" type="String" />
<description>
</description>
</method>
<method name="operator !=" qualifiers="operator">
- <return type="bool">
- </return>
- <argument index="0" name="right" type="StringName">
- </argument>
+ <return type="bool" />
+ <argument index="0" name="right" type="StringName" />
<description>
</description>
</method>
<method name="operator ==" qualifiers="operator">
- <return type="bool">
- </return>
- <argument index="0" name="right" type="String">
- </argument>
+ <return type="bool" />
+ <argument index="0" name="right" type="String" />
<description>
</description>
</method>
<method name="operator ==" qualifiers="operator">
- <return type="bool">
- </return>
- <argument index="0" name="right" type="StringName">
- </argument>
+ <return type="bool" />
+ <argument index="0" name="right" type="StringName" />
<description>
</description>
</method>