summaryrefslogtreecommitdiff
path: root/doc/classes/StringName.xml
blob: 4c2619e782b13dcc70e686c78136f7db6a5dfe40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="UTF-8" ?>
<class name="StringName" version="4.0">
	<brief_description>
		An optimized string type for unique names.
	</brief_description>
	<description>
		[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" />
			<description>
				Constructs an empty [StringName].
			</description>
		</method>
		<method name="StringName" qualifiers="constructor">
			<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" />
			<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" />
			<argument index="0" name="right" type="String" />
			<description>
			</description>
		</method>
		<method name="operator !=" qualifiers="operator">
			<return type="bool" />
			<argument index="0" name="right" type="StringName" />
			<description>
			</description>
		</method>
		<method name="operator ==" qualifiers="operator">
			<return type="bool" />
			<argument index="0" name="right" type="String" />
			<description>
			</description>
		</method>
		<method name="operator ==" qualifiers="operator">
			<return type="bool" />
			<argument index="0" name="right" type="StringName" />
			<description>
			</description>
		</method>
	</methods>
	<constants>
	</constants>
</class>