summaryrefslogtreecommitdiff
path: root/doc/classes/String.xml
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-02-25 22:19:55 +0100
committerGitHub <noreply@github.com>2020-02-25 22:19:55 +0100
commit2d980f6f13cc761c1eb9329e7eaeba5e9d1a9b37 (patch)
treeecebffb161df0624224b7535f954695b76bdd06d /doc/classes/String.xml
parent2ead439370ab220043df3fe1effc239ee597c1cd (diff)
parenta7e1df4b1d72ee4d81274450063e0b89103d72b2 (diff)
Merge pull request #36542 from akien-mga/doc-64-arrays
doc: Sync classref for Packed{Int,Float}{32,64}Array additions
Diffstat (limited to 'doc/classes/String.xml')
-rw-r--r--doc/classes/String.xml28
1 files changed, 23 insertions, 5 deletions
diff --git a/doc/classes/String.xml b/doc/classes/String.xml
index bcd29d7355..1a5182b76e 100644
--- a/doc/classes/String.xml
+++ b/doc/classes/String.xml
@@ -229,19 +229,37 @@
<method name="String">
<return type="String">
</return>
- <argument index="0" name="from" type="PackedIntArray">
+ <argument index="0" name="from" type="PackedInt32Array">
</argument>
<description>
- Constructs a new String from the given [PackedIntArray].
+ Constructs a new String from the given [PackedInt32Array].
</description>
</method>
<method name="String">
<return type="String">
</return>
- <argument index="0" name="from" type="PackedRealArray">
+ <argument index="0" name="from" type="PackedInt64Array">
</argument>
<description>
- Constructs a new String from the given [PackedRealArray].
+ Constructs a new String from the given [PackedInt64Array].
+ </description>
+ </method>
+ <method name="String">
+ <return type="String">
+ </return>
+ <argument index="0" name="from" type="PackedFloat32Array">
+ </argument>
+ <description>
+ Constructs a new String from the given [PackedFloat32Array].
+ </description>
+ </method>
+ <method name="String">
+ <return type="String">
+ </return>
+ <argument index="0" name="from" type="PackedFloat64Array">
+ </argument>
+ <description>
+ Constructs a new String from the given [PackedFloat64Array].
</description>
</method>
<method name="String">
@@ -879,7 +897,7 @@
</description>
</method>
<method name="split_floats">
- <return type="PackedRealArray">
+ <return type="PackedFloat32Array">
</return>
<argument index="0" name="delimiter" type="String">
</argument>