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 >
2021-03-18 12:04:28 +01:00
[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.
2020-02-22 14:59:09 +01:00
</description>
<tutorials >
</tutorials>
2021-09-21 04:49:02 +02:00
<constructors >
<constructor name= "StringName" >
2021-07-30 15:28:05 +02:00
<return type= "StringName" />
2020-11-09 17:46:03 +01:00
<description >
Constructs an empty [StringName].
</description>
2021-09-21 04:49:02 +02:00
</constructor>
<constructor name= "StringName" >
2021-07-30 15:28:05 +02:00
<return type= "StringName" />
<argument index= "0" name= "from" type= "StringName" />
2020-11-09 17:46:03 +01:00
<description >
Constructs a [StringName] as a copy of the given [StringName].
</description>
2021-09-21 04:49:02 +02:00
</constructor>
<constructor name= "StringName" >
2021-07-30 15:28:05 +02:00
<return type= "StringName" />
<argument index= "0" name= "from" type= "String" />
2020-02-22 14:59:09 +01:00
<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>
2021-09-21 04:49:02 +02:00
</constructor>
</constructors>
<operators >
<operator name= "operator !=" >
2021-09-17 17:22:48 +02:00
<return type= "bool" />
<description >
</description>
2021-09-21 04:49:02 +02:00
</operator>
<operator name= "operator !=" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "right" type= "String" />
2020-11-10 14:16:20 +01:00
<description >
</description>
2021-09-21 04:49:02 +02:00
</operator>
<operator name= "operator !=" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "right" type= "StringName" />
2020-11-10 14:16:20 +01:00
<description >
</description>
2021-09-21 04:49:02 +02:00
</operator>
<operator name= "operator ==" >
2021-09-17 17:22:48 +02:00
<return type= "bool" />
<description >
</description>
2021-09-21 04:49:02 +02:00
</operator>
<operator name= "operator ==" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "right" type= "String" />
2020-11-10 14:16:20 +01:00
<description >
</description>
2021-09-21 04:49:02 +02:00
</operator>
<operator name= "operator ==" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "right" type= "StringName" />
2020-11-10 14:16:20 +01:00
<description >
</description>
2021-09-21 04:49:02 +02:00
</operator>
</operators>
2020-02-22 14:59:09 +01:00
</class>