2020-02-22 14:59:09 +01:00
<?xml version="1.0" encoding="UTF-8" ?>
<class name= "StringName" version= "4.0" >
<brief_description >
2020-03-03 19:21:21 +01:00
An optimized string type for unique names.
2020-02-22 14:59:09 +01:00
</brief_description>
<description >
2020-03-03 19:21:21 +01:00
[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.
2020-02-22 14:59:09 +01:00
</description>
<tutorials >
</tutorials>
<methods >
2020-11-10 14:16:20 +01:00
<method name= "StringName" qualifiers= "constructor" >
2020-11-09 17:46:03 +01:00
<return type= "StringName" >
</return>
<description >
Constructs an empty [StringName].
</description>
</method>
2020-11-10 14:16:20 +01:00
<method name= "StringName" qualifiers= "constructor" >
2020-11-09 17:46:03 +01:00
<return type= "StringName" >
</return>
<argument index= "0" name= "from" type= "StringName" >
</argument>
<description >
Constructs a [StringName] as a copy of the given [StringName].
</description>
</method>
2020-11-10 14:16:20 +01:00
<method name= "StringName" qualifiers= "constructor" >
2020-02-22 14:59:09 +01:00
<return type= "StringName" >
</return>
<argument index= "0" name= "from" type= "String" >
</argument>
<description >
2020-03-03 19:21:21 +01:00
Creates a new [StringName] from the given [String].
2020-02-22 14:59:09 +01:00
</description>
</method>
2020-11-10 14:16:20 +01:00
<method name= "operator !=" qualifiers= "operator" >
<return type= "bool" >
</return>
<argument index= "0" name= "right" type= "String" >
</argument>
<description >
</description>
</method>
<method name= "operator !=" qualifiers= "operator" >
<return type= "bool" >
</return>
<argument index= "0" name= "right" type= "StringName" >
</argument>
<description >
</description>
</method>
<method name= "operator ==" qualifiers= "operator" >
<return type= "bool" >
</return>
<argument index= "0" name= "right" type= "String" >
</argument>
<description >
</description>
</method>
<method name= "operator ==" qualifiers= "operator" >
<return type= "bool" >
</return>
<argument index= "0" name= "right" type= "StringName" >
</argument>
<description >
</description>
</method>
2020-02-22 14:59:09 +01:00
</methods>
<constants >
</constants>
</class>